JTA transactions involving spring and non-spring

235 Views Asked by At

By using an external jta manager like atomikos or bitronix, is it possible to combine a spring transaction and a non-spring transaction? If possible, do I still need to annotate the method as transactional - what if the transactions span across methods or classes?

1

There are 1 best solutions below

0
On

Then you should allow the other library use the same JTA library which you configured in Spring with either Bitronix or Atomikos.

This way, you have a a JTA transcation manager configured in Spring and a single JTA DataSource which you need to pass to the outer library via the hibernate.connection.datasource configuration property.