Spring声明式事务如何选择代理方式?
解决方法:
1.基于注解方法:
<tx:annotation-driven transaction-manager="txManager" proxy-target-class="true"/>
2.基于xml配置方法:
<aop:config expose-proxy="true" proxy-target-class="false">
</aop:config>
默认false,选择jdk代理模式,true使用cglib代理模式。
本文地址:http://www.yayihouse.com/yayishuwu/chapter/1304