spring事务管理tx:Advice详解

默认的 <tx:advice/> 设置如下:

事务传播设置是 REQUIRED

隔离级别是 DEFAULT

事务是 读/写

事务超时默认是依赖于事务系统的,或者事务超时没有被支持。

任何 RuntimeException 将触发事务回滚,但是任何 checked Exception 将不触发事务回滚

这些默认的设置当然也是可以被改变的。 <tx:advice/> 和 <tx:attributes/> 标签里的 <tx:method/> 各种属性设置总结如下:rollback-for/no-rollback-for:配置哪些异常可以导致/不导致回滚,在默认情况下,抛出RuntimeException或其子类将导致回滚,其它异常不会导致回滚 .

tx:method

属性

类型

默认值

说明

name

 

与事务属性关联的方法名。通配符(*)可以用来指定一批关联到相同的事务属性的方法。 如:'get*' 、'handle*' 、'on*Event' 等等。

propagation

Propagation枚举REQUIRED事务传播属性
isolationisolation枚举DEFAULT(所用数据库默认级别)事务隔离级别
read-onlybooleanfalse是否才用优化的只读事务
timeoutint-1超时(秒)
rollbackForClass[]{}需要回滚的异常类
noRollbackForClass[]{}不需要回滚的异常类

 

Spring中事物的传播级别:

PROPAGATION_REQUIRED--支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。 
PROPAGATION_SUPPORTS--支持当前事务,如果当前没有事务,就以非事务方式执行。 
PROPAGATION_MANDATORY--支持当前事务,如果当前没有事务,就抛出异常。 
PROPAGATION_REQUIRES_NEW--新建事务,如果当前存在事务,把当前事务挂起。 
PROPAGATION_NOT_SUPPORTED--以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。 
PROPAGATION_NEVER--以非事务方式执行,如果当前存在事务,则抛出异常。

解惑 spring 嵌套事务 (转载自http://www.javaeye.com/topic/35907?page=1)

/** 
* @date 2006-11-24 
* @note 转载自http://www.javaeye.com/topic/35907?page=1
*/ 
********TransactionDefinition 接口定义*******************
/** 
      * Support a current transaction, create a new one if none exists. 
      * Analogous to EJB transaction attribute of the same name. 
      * 
This is typically the default setting of a transaction definition. 
      */ 
     int PROPAGATION_REQUIRED = 0; 
     /** 
      * Support a current transaction, execute non-transactionally if none exists. 
      * Analogous to EJB transaction attribute of the same name. 
      * 
Note: For transaction managers with transaction synchronization, 
      * PROPAGATION_SUPPORTS is slightly different from no transaction at all, 
      * as it defines a transaction scopp that synchronization will apply for. 
      * As a consequence, the same resources (JDBC Connection, Hibernate Session, etc) 
      * will be shared for the entire specified scope. Note that this depends on 
      * the actual synchronization configuration of the transaction manager. 
      * @see org.springframework.transaction.support.AbstractPlatformTransactionManager#setTransactionSynchronization 
      */ 
     int PROPAGATION_SUPPORTS = 1; 
     /** 
      * Support a current transaction, throw an exception if none exists. 
      * Analogous to EJB transaction attribute of the same name. 
      */ 
     int PROPAGATION_MANDATORY = 2; 
     /** 
      * Create a new transaction, suspend the current transaction if one exists. 
      * Analogous to EJB transaction attribute of the same name. 
      *
Note: Actual transaction suspension will not work on out-of-the-box 
      * on all transaction managers. This in particular applies to JtaTransactionManager, 
      * which requires the javax.transaction.TransactionManager to be 
      * made available it to it (which is server-specific in standard J2EE). 
      * @see org.springframework.transaction.jta.JtaTransactionManager#setTransactionManager 
      */ 
     int PROPAGATION_REQUIRES_NEW = 3; 
     /** 
      * Execute non-transactionally, suspend the current transaction if one exists. 
      * Analogous to EJB transaction attribute of the same name. 
      * 
Note: Actual transaction suspension will not work on out-of-the-box 
      * on all transaction managers. This in particular applies to JtaTransactionManager, 
      * which requires the javax.transaction.TransactionManager to be 
      * made available it to it (which is server-specific in standard J2EE). 
      * @see org.springframework.transaction.jta.JtaTransactionManager#setTransactionManager 
      */ 
     int PROPAGATION_NOT_SUPPORTED = 4; 
     /** 
      * Execute non-transactionally, throw an exception if a transaction exists. 
      * Analogous to EJB transaction attribute of the same name. 
      */ 
     int PROPAGATION_NEVER = 5; 
     /** 
      * Execute within a nested transaction if a current transaction exists, 
      * behave like PROPAGATION_REQUIRED else. There is no analogous feature in EJB. 
      * 
Note: Actual creation of a nested transaction will only work on specific 
      * transaction managers. Out of the box, this only applies to the JDBC 
      * DataSourceTransactionManager when working on a JDBC 3.0 driver. 
      * Some JTA providers might support nested transactions as well. 
      * @see org.springframework.jdbc.datasource.DataSourceTransactionManager 
      */ 
     int PROPAGATION_NESTED = 6; 


在这篇文章里,他用两个嵌套的例子辅助分析,我这里直接引用了。

********************sample***********************
ServiceA { 
       
     /** 
      * 事务属性配置为 PROPAGATION_REQUIRED 
      */ 
     void methodA() { 
         ServiceB.methodB(); 
     }   
} 
  
ServiceB {  
     /** 
      * 事务属性配置为 PROPAGATION_REQUIRED 
      */ 
     void methodB() { 
     }
} 
*************************************************


1: PROPAGATION_REQUIRED 

加入当前正要执行的事务不在另外一个事务里,那么就起一个新的事务 
比如说,ServiceB.methodB的事务级别定义为PROPAGATION_REQUIRED, 那么由于执行ServiceA.methodA的时候, 
ServiceA.methodA已经起了事务,这时调用ServiceB.methodB,ServiceB.methodB看到自己已经运行在ServiceA.methodA 
的事务内部,就不再起新的事务。而假如ServiceA.methodA运行的时候发现自己没有在事务中,他就会为自己分配一个事务。 
这样,在ServiceA.methodA或者在ServiceB.methodB内的任何地方出现异常,事务都会被回滚。即使ServiceB.methodB的事务已经被 
提交,但是ServiceA.methodA在接下来fail要回滚,ServiceB.methodB也要回滚

2: PROPAGATION_SUPPORTS 

如果当前在事务中,即以事务的形式运行,如果当前不再一个事务中,那么就以非事务的形式运行 

3: PROPAGATION_MANDATORY 

必须在一个事务中运行。也就是说,他只能被一个父事务调用。否则,他就要抛出异常 



4: PROPAGATION_REQUIRES_NEW 

这个就比较绕口了。 比如我们设计ServiceA.methodA的事务级别为
PROPAGATION_REQUIRED,ServiceB.methodB的事务级别为PROPAGATION_REQUIRES_NEW, 
那么当执行到ServiceB.methodB的时候,ServiceA.methodA所在的事务就会挂起,
ServiceB.methodB会起一个新的事务,等待ServiceB.methodB的事务完成以后, 
他才继续执行。他与PROPAGATION_REQUIRED 的事务区别在于事务的回滚程度了。
因为ServiceB.methodB是新起一个事务,那么就是存在 
两个不同的事务。如果ServiceB.methodB已经提交,那么ServiceA.methodA失败回滚,
ServiceB.methodB是不会回滚的。如果ServiceB.methodB失败回滚, 
如果他抛出的异常被ServiceA.methodA捕获,ServiceA.methodA事务仍然可能提交。

 5: PROPAGATION_NOT_SUPPORTED 

当前不支持事务。比如ServiceA.methodA的事务级别是PROPAGATION_REQUIRED ,而ServiceB.methodB
的事务级别是PROPAGATION_NOT_SUPPORTED , 那么当执行到ServiceB.methodB时,
ServiceA.method的事务挂起,而他以非事务的状态运行完,再继续ServiceA.methodA的事务。 

6: PROPAGATION_NEVER 

不能在事务中运行。假设ServiceA.methodA的事务级别是PROPAGATION_REQUIRED, 
而ServiceB.methodB的事务级别是PROPAGATION_NEVER , 那么ServiceB.methodB
就要抛出异常了。

 

7: PROPAGATION_NESTED 
 

理解Nested的关键是savepoint。他与PROPAGATION_REQUIRES_NEW的区别是,
PROPAGATION_REQUIRES_NEW另起一个事务,将会与他的父事务相互独立, 
而Nested的事务和他的父事务是相依的,他的提交是要等和他的父事务一块提交的。也就是说,
如果父事务最后回滚,他也要回滚的。 而Nested事务的好处是他有一个savepoint。 
***************************************** 
ServiceA { 

/** 
* 事务属性配置为 PROPAGATION_REQUIRED 
*/ 
    void methodA() { 
        try { 
        //savepoint 

        ServiceB.methodB(); //PROPAGATION_NESTED 级别 

        } catch (SomeException) { 
        // 执行其他业务, 如 ServiceC.methodC(); 

        } 
    } 

} 
********************************************

 
也就是说ServiceB.methodB失败回滚,那么ServiceA.methodA也会回滚到savepoint点上,ServiceA.methodA可以选择另外一个分支,比如 
ServiceC.methodC,继续执行,来尝试完成自己的事务。 

  • 1
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring TX事务管理Spring框架提供的一种管理事务的机制。Spring并不直接管理事务,而是通过提供多种事务管理器,将事务管理的职责委托给底层的持久化机制(如Hibernate或JTA等)来实现。 在Spring进行事务管理时,主要有两种方式:编程式事务管理和声明式事务管理。声明式事务管理是一种常用的方式,它通过使用注解或配置文件的方式来定义事务的边界和行为。 要使用Spring事务管理,首先需要引入相关的库。然后,根据具体的需求,可以使用注解式的方式来管理事务。例如,可以在需要进行事务管理的方法或类上添加@Transactional注解,该注解会自动处理事务的开启、提交或回滚等操作。 下面是一个使用Spring事务管理的示例代码: ```java package org.example; import org.example.service.AccountService; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Starter01 { public static void main(String[] args) { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring01.xml"); AccountService accountService = (AccountService) applicationContext.getBean("accountService"); accountService.transfer(1, 100.0, 2); } } ``` 以上是一个简单的示例,它演示了如何使用注解方式来管理Spring事务。在该示例中,通过获取ApplicationContext来获取AccountService bean,并调用其transfer方法来完成事务操作。<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值