1

我在 Context.xml(JNDI) 中定义了 DataSource,我想在 Spring 应用程序 Context.xml 中使用 JPA 事务管理器。我不想使用 JTA Transaction,因为我使用的是 tomcat 服务器。

谁能帮助我如何通过示例实现这一目标?我在 DAO 和服务中使用 @transactional 注释。

问候维杰

4

2 回答 2

0

you can Define DataSource: Use JndiObjectFactoryBean class. To define the data source by providing JNDI binding name.

<!– Data Source JNDI –&gt;
<bean id=”dataSource” class=”org.springframework.jndi.JndiObjectFactoryBean”&gt;
<property name=”jndiName”&gt;
<value>jdbc/SampleDS</value>
</property>
</bean>
于 2012-10-25T14:09:45.237 回答
0

这是一个例子:

<?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 章。

于 2012-10-25T14:05:43.487 回答