码迷,mamicode.com
首页 > 其他好文 > 详细

配置事务通知

时间:2019-09-07 13:34:27      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:span   ack   get   rop   attribute   --   red   ice   cep   

<!--配置事务通知-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="find*" read-only="true" propagation="SUPPORTS"/>
<tx:method name="add" propagation="REQUIRED" rollback-for="Exception"/>
<tx:method name="upd" propagation="REQUIRED" rollback-for="Exception"/>
<tx:method name="search*" read-only="true" propagation="SUPPORTS"/>
<tx:method name="get*" read-only="true" propagation="SUPPORTS"/>
<tx:method name="*" read-only="false" propagation="REQUIRED" rollback-for="Exception"/>
</tx:attributes>
</tx:advice>

配置事务通知

标签:span   ack   get   rop   attribute   --   red   ice   cep   

原文地址:https://www.cnblogs.com/dingyi-boss/p/11479945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!