spring进行事务管理的API------PlatformTransactionManager

事务步骤:打开事务→回滚事务→提交事务

TransactionDefinition: 事务定义信息
1、隔离级别(4种)

         1 读未提交

         2读已提交

         4可重复读

          8串行化
2、传播行为:决定业务方法之间调用,事务应该如何处理

PROPAGION_XXX  :事务的传播行为
     * 保证同一个事务中
        PROPAGATION_REQUIRED 支持当前事务,如果不存在 就新建一个(默认)
        PROPAGATION_SUPPORTS 支持当前事务,如果不存在,就不使用事务
        PROPAGATION_MANDATORY  支持当前事务,如果不存在,抛出异常

    * 保证没有在同一个事务中
         PROPAGATION_REQUIRES_NEW  如果有事务存在,挂起当前事务,创建一个新的事务
         PROPAGATION_NOT_SUPPORTED  以非事务方式运行,如果有事务存在,挂起当前事务
         PROPAGATION_NEVER 以非事务方式运行,如果有事务存在,抛出异常
         PROPAGATION_NESTED 如果当前事务存在,则嵌套事务执行

3、超时信息
4、是否只读(true:只读   false:可操作)


在配置事务通知:

                isolation:隔离级别
                propagation:传播行为
                read-only:只读
                advice-ref:通知的名称
                pointcut-ref:切点的名称 

<!-- 配置事务通知 -->
	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<!-- 以方法为单位,指定方法应用说明事务属性
				isolation:隔离级别
				propagation:传播行为
				read-only:只读
			 -->
			<tx:method name="save*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
			<tx:method name="persist*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
			<tx:method name="update*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
			<tx:method name="modify*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
			<tx:method name="delete*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
			<tx:method name="remove*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
			<tx:method name="get*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true" />
			<tx:method name="find*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true" />
			<tx:method name="transfer" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
		</tx:attributes>
	</tx:advice>	

<!-- 配置织入 -->
	<aop:config>
		<!-- 配置切点表达式 -->
		<aop:pointcut expression="execution(* cn.itcast.service.*ServiceImpl.*(...))" id="txPc"/>
		<!-- 配置切面:通知+切点
			advice-ref:通知的名称
			pointcut-ref:切点的名称
		 -->
		<aop:advisor advice-ref="txAdvice" pointcut-ref="txPc"/>
	</aop:config>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值