Spring AOP原理解析——Spring事务

Spring申明式事务有两种方式:

  1. 基于配置文件
  2. 基于注解

一、基于配置文件的事务

<!-- 会重复读,不会脏读事务 -->
<tx:advice id="defaultTxAdvice" transaction-manager="transactionManager">
    <tx:attributes>
        <tx:method name="*" timeout="120" propagation="REQUIRED" rollback-for="Exception" />
    </tx:attributes>
</tx:advice>

<aop:config>
    <aop:pointcut id="pointcut" expression="..."/>
    <aop:advisor advice-ref="defaultTxAdvice" pointcut-ref="pointcut" />
</aop:config>

二、基于注解的事务

<tx:annotation-driven transaction-manager="transactionManager"/>
    原文作者:AOP
    原文地址: https://blog.csdn.net/u011983531/article/details/80387847
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞