Results 1 to 2 of 2

Thread: ACL, Hibernate and TransactionManager

  1. #1
    Join Date
    Jan 2011
    Posts
    11

    Default ACL, Hibernate and TransactionManager

    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?

  2. #2
    Join Date
    Jan 2008
    Posts
    1,826

    Default

    While you are writing a DAO for Spring Security, this question is probably better for the Spring Data forums since it is pertaining to transaction management. You are likely to get a faster/better response from there.

    Cheers,
    Rob Winch - @rob_winch
    Spring Security Lead
    Pivotal

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •