Using Spring + Hibernate Transactional cache in Tomcat? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:50:15Zhttp://stackoverflow.com/feeds/question/770964http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770964/using-spring-hibernate-transactional-cache-in-tomcat2Using Spring + Hibernate Transactional cache in Tomcat?Alex Miller2009-04-21T03:45:16Z2009-04-21T04:05:06Z
<p>It seems that Hibernate transactional cache mode requires the use of a JTA transaction manager. In an app server such as Glassfish, Weblogic, etc, Spring can use the JTA transaction manager. Tomcat does not have a JTA transaction manager.</p>
<p>Is there one that people use in this scenario? Or do people just not use transactional cache mode with Tomcat?</p>
http://stackoverflow.com/questions/770964/using-spring-hibernate-transactional-cache-in-tomcat/771001#7710012Answer by Pablo Fernandez for Using Spring + Hibernate Transactional cache in Tomcat?Pablo Fernandez2009-04-21T04:05:06Z2009-04-21T04:05:06Z<p>It depends on you ORM implementation, for example for JPA Spring has a transaction manager for using outside JEE containers. here's how you declare it:</p>
<pre><code><bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
</code></pre>
<p>I usually use annotations to demarcate transaction boundaries (with @Transaction), to do this you just have to add to the configuration file this other line:</p>
<pre><code><tx:annotation-driven transaction-manager="transactionManager" />
</code></pre>
<p>present in this XSD namespace: "http://www.springframework.org/schema/tx"</p>