I have a fairly simple question about the behavior of TransactionProxyFactory Bean. Does it itercept calls from one method to another in the target class?
For example let's say I some methods that don't need a transaction (like find type methods) and only one or two that do (like save and delete).
Now, I introduce another method that doesn't need a transaction itself and in all actuallity needs no transaction, that calls the save method. Would a transaction start and commit for the call to the save method?
If not, is my only recourse to use a Facade that calls the two methods seperately?
Thanks,
Patrick


Reply With Quote