Using Spring + Hibernate Transactional cache in Tomcat? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:50:15Z http://stackoverflow.com/feeds/question/770964 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/770964/using-spring-hibernate-transactional-cache-in-tomcat 2 Using Spring + Hibernate Transactional cache in Tomcat? Alex Miller 2009-04-21T03:45:16Z 2009-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#771001 2 Answer by Pablo Fernandez for Using Spring + Hibernate Transactional cache in Tomcat? Pablo Fernandez 2009-04-21T04:05:06Z 2009-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>&lt;bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"&gt; &lt;property name="entityManagerFactory" ref="entityManagerFactory" /&gt; &lt;/bean&gt; </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>&lt;tx:annotation-driven transaction-manager="transactionManager" /&gt; </code></pre> <p>present in this XSD namespace: "http://www.springframework.org/schema/tx"</p>