Below is my configuration for transactions
<bean id="TransactionProxyCreator"
class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
<property...
Type: Posts; User: springdeveloper7; Keyword(s):
Below is my configuration for transactions
<bean id="TransactionProxyCreator"
class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
<property...
I am using @Async method annotation to improve the performance of the application by querying independent tables from the same database (sql server). However the transaction is not rolled back on an...