配置事务通知

Posted dingyi-boss

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置事务通知相关的知识,希望对你有一定的参考价值。

<!--配置事务通知-->
<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>

以上是关于配置事务通知的主要内容,如果未能解决你的问题,请参考以下文章

SpringSpring系列5之Spring支持事务处理

分布式柔性事务之最大努力通知事务详解

分布式事务柔性事务之 TCCSaga本地消息表事务消息最大努力通知

java面试题目

分布式事务之解决方案(最大努力通知)

我说分布式事务之最大努力通知型事务