Hello
I'm using Hibernate for my DAO. How should I manage transactions? Suppos I've got a method
Code:
... 
dao.save(object)
acl.addPermission(object, ...)
....
throw new Exception();
What TransactionManager (may be combination of TMs) should I use to make correct rollback for my Hibernate DAO and JDBC ACL?