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


Reply With Quote