Tagged Questions

JOTM is an open source JTA transaction manager.

learn more… | top users | synonyms

7
votes
5answers
31k views

Spring JTA TransactionManager config: Supporting both Tomcat and JBoss

I have a web application using JPA and JTA with Spring. I would like to support both JBoss and Tomcat. When running on JBoss, I'd like to use JBoss' own TransactionManager, and when running on Tomcat, ...
2
votes
2answers
1k views

when to use global transaction Or use spring aop for transaction

Q1. i do understand when we need to deal with multiple databases, we need to use global transaction. but from this post http://fogbugz.atomikos.com/default.asp . the person suggested just use spring ...
2
votes
2answers
1k views

spring transactional cpool. Which one do I use?

I originally set up spring with xapool, but it turns out that's a dead project and seems to have lots of problems. I switched to c3p0, but now I learn that the @Transactional annotations don't ...
1
vote
0answers
102 views

Using JOTM transaction manager Doesn't works on Tomcat

Facing a strange problem here, below is the configuration i am using: 1. Apache Tomcat 6.0.26 2. mySql 3. Spring framework+ Hibernate We have used JOTM for transaction management <bean id="jotm" ...
1
vote
1answer
546 views

Hibernate EntityManager + JOTM: transactions are not used

I am trying to integrate together JOTM and Hibernate EntityManager to test my EJBs in a transactional manner environment but out-of-container. My test looks like the following: Start JOTM Put ...
1
vote
2answers
1k views

Maven, Jetty, JOTM

I have been unable to configure JOTM ontop of Jetty inside a Maven build environment. The exception I get when I try to run my application is the following: 2009-07-21 19:47:23.499::WARN: Config ...
0
votes
0answers
84 views

How do I use JOTM with Tomcat 6?

I haven't found any current how-to for Tomcat 6 that worked. If I use maven in my project: What dependencies to include? How to configure the context.xml? Thanks!
0
votes
2answers
192 views

Spring global transaction commited after getting an element

I am using Spring and Hibernate with Jta Transactions, I have 2 databases, and I have a problem in a transactional method. In this method I insert a lot of objects but I throws an exception to ...
0
votes
1answer
619 views

Configuring JPA and JOTM without Spring

Can anyone point me to an example of configuring JPA/JOTM in an environment where Spring isn't being used? I'm building a web-app with Tomcat and JPA/MySQL. Currently I'm just using the ...