aspose file tools
The moose likes Spring and the fly likes Spring Transaction Management Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Spring
Reply Bookmark "Spring Transaction Management" Watch "Spring Transaction Management" New topic
Author

Spring Transaction Management

Manoj Raghuwanshi
Ranch Hand

Joined: Jun 20, 2004
Posts: 75
Hi All,

I have a message driven bean created using Spring. Transaction attribute in ejb-jar.xml is 'NotSupported' now if any method in the bean throws RunTimeException then what wil happen? By default if transaction is there spring will rollback the transaction. In this case transaction is not present then how spring will be behave?

Thanks in advance.

Regards,
Manoj
Vivek K Singh
Ranch Hand

Joined: Dec 22, 2009
Posts: 85

Spring will manage transactions only if you ask spring to... You will have to create transaction manager and write transaction advice on the method, then on a RuntimeExec the transaction will be rolled back.


SCJP 6
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Spring Transaction Management
 
Similar Threads
Call Transactional Remote Session Bean From Spring
hibernate in Spring framework
What is "Lightweight"?
Please explain...
session.connection() is depricated . How to setAutoCommit(false) ?