Hibernate Team |
|
Joined: Tue Aug 26, 2003 3:00 pm Posts: 1816 Location: Austin, TX
|
A clarification: Hibernate transactions are not JTA transactions. Hibernate transaction only span the database connection underlying the session from which you got the transaction.
JOTM is a JTA and (I believe XA) compliant transaction manager. JTA is simply a generic transaction demercation API. It can be applied to any jta-based "resource manager" such as jdbc, jms, etc. And if XA enabled, it can even cordinate transactions between these various resource managrs.
|
|