How to use JTA support in Tomcat 6 for Hibernate?

后端 未结 2 461
感动是毒
感动是毒 2020-12-01 01:25

They recommend using JTA transaction support in Java EE environment.

But how to configure JTA in Tomcat6 so that Hibernate Session could use it ?

2条回答
  •  一个人的身影
    2020-12-01 02:20

    If you want JTA support in Tomcat you'll need to use a standalone transaction manager like Atomikos, JOTM, Bitronix, SimpleJTA, JBossTS or GeronimoTM/Jencks. But honestly, if you're not going to handle transactions across multiple resources, then you can live without JTA (and if you really need JTA, use a full blown application server).

提交回复
热议问题