定数をxmlでつかう

util:constantを使うと、static定数をプロパティとして利用できる。

<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:util="http://www.springframework.org/schema/util">
  <bean id="..." class="...">
    <property name="isolation">
      <util:constant static-field="java.sql.Connection.TRANSACTION_SERIALIZABLE"/>
    </property>
  </bean>
</bean>