0
votes

I have an app that is deployed on Tomcat but I need to use JTA because I am connecting to multiple data sources. I don't want to use JBoss AS but would like to use the JBoss transaction manager. I currently have my app configured to use Bitronix but my boss wants me to use something more popular. Sigh.

Does anyone know how to use the JBoss transaction manager with Spring and Hibernate but not use JBoss AS?

1
You really should convince your boss that Bitronix is a perfect choice in this case.abalogh

1 Answers

2
votes

Have you seen this:

http://community.jboss.org/wiki/HowToUseJBossJTAStandaloneTransactionManager ?

If it's not already supported in Spring, writing your custom AbstractPlatformTransactionManager to wrap JBoss TM shouldn't be hard.