vote up 2 vote down star
1

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.

Is there one that people use in this scenario? Or do people just not use transactional cache mode with Tomcat?

flag

75% accept rate

1 Answer

vote up 2 vote down

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:

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
    <property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>

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:

<tx:annotation-driven transaction-manager="transactionManager" />

present in this XSD namespace: "http://www.springframework.org/schema/tx"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.