Results 1 to 3 of 3

Thread: Spring Transaction manager

  1. #1
    Join Date
    Feb 2006
    Posts
    13

    Default Spring Transaction manager

    Hi
    Are there any restrictions on use of Spring Transaction manager? or scenarios where Spring Transaction manager has limitations compared to J2EE transaction manager? For example using MDBs or distributed transactions etc.. I see Rod Johnson's quote as "Spring Transaction manager is more powerful than J2EE transaction manager." I just want to make sure if there are any scenarios where spring transactions are not advised or will nor work.

    Thanks
    Srl

  2. #2
    Join Date
    Feb 2005
    Location
    Boston, MA
    Posts
    1,142

    Default

    Spring's transaction manager is an abstraction on existing transaction manager strategies, including JTA. It is designed to either manage a transaction itself or to hook into a transaction already taking place.

    I have never heard of a case where you couldn't use Spring's transaction support to replace or sit on top of standard transaction managers.
    Bill

  3. #3

    Default

    Unless you have distributed XA transactions across AppServers/JVM's. Spring does not propergate the transaction context.

Posting Permissions

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