Context.xml(JNDI) で DataSource を定義しました。Spring アプリケーションの Context.xml で JPA トランザクション マネージャーを使用したいと考えています。Tomcat サーバーを使用しているため、JTA トランザクションを使用したくありません。
例でこれを達成するにはどうすればよいですか?DAO およびサービスで @transactional アノテーションを使用しています。
よろしくビジェイ
DataSource を定義できます: JndiObjectFactoryBean クラスを使用します。JNDI バインディング名を指定してデータ ソースを定義します。
<!– Data Source JNDI –>
<bean id=”dataSource” class=”org.springframework.jndi.JndiObjectFactoryBean”>
<property name=”jndiName”>
<value>jdbc/SampleDS</value>
</property>
</bean>
次に例を示します。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<!-- Provides access to the JNDI datasource -->
<jee:jndi-lookup id="dataSource" jndi-name="jdbc/jpetstore"/>
<!-- Defines transaction manager -->
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- Enables transactional behavior -->
<tx:annotation-driven />
<!-- other <bean/> definitions here -->
</beans>
データ ソース<jee:jndi-lookup/>
へのアクセスを取得するために使用します。JNDI
次に、取得したデータソース参照をPlatformTransactionManager
などの適切なものに渡しますDataSourceTransactionManager
。
また、注釈をアクティブにする<tx:annotation-driven />
ために提供する必要があります。@Transactional
Spring のトランザクション管理を十分に理解するには、Spring リファレンスの第 10 章を読むことをお勧めします。