采用基于XML方式配置事务

前端之家收集整理的这篇文章主要介绍了采用基于XML方式配置事务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
32     <!-- 使用xml配置事务 -->
33 <aop:config>
34 <aop:pointcut id="transactionPointcut" expression="execution(* cn.itcast.service..*.*(..))" />
35 <aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointcut" />
36 </aop:config>
37 <tx:advice id="txAdvice" transaction-manager="txManager">
38 <tx:attributes>
39 <tx:method name="get*" read-only="true" propagation="NOT_SUPPORTED" />
40 <tx:method name="*" />
41 </tx:attributes>
42 </tx:advice>
原文链接:https://www.f2er.com/xml/298709.html

猜你在找的XML相关文章