Hello
my project uses <aop:config> with a <tx:advice> to configure transaction on all my business services.
For a special case, I'd like to use NESTED propagation. I'd like to avoid changing my AOP config just for this case, so I plan to use a @Transactional annotation on the nested-business method.
Will <tx:advice> detect my annotation, or just use the declared <tx:attributes> ?


Reply With Quote