/*** @author 王政* @date 2006-11-24* @note 转载自http://www.iteye.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.methodA的事务挂起,而他以非事务的状态运行完,再继续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 {//savepointServiceB.methodB();    //PROPAGATION_NESTED 级别} catch (SomeException) {// 执行其他业务, 如 ServiceC.methodC();}}}********************************************也就是说ServiceB.methodB失败回滚,那么ServiceA.methodA也会回滚到savepoint点上,ServiceA.methodA可以选择另外一个分支,比如ServiceC.methodC,继续执行,来尝试完成自己的事务。但是这个事务并没有在EJB标准中定义。二、Isolation Level(事务隔离等级):

oracle事物的传播属性,spring事务的隔离级别和传播属性相关推荐

  1. spring事务的隔离级别和传播特性详解(附实例)

    spring支持编程式事务管理和声明式事务管理两种方式. 编程式事务管理使用TransactionTemplate或者直接使用底层的PlatformTransactionManager.对于编程式事务 ...

  2. 事务隔离级别和传播行为_.spring的事务有几种方式?spring事务的隔离级别和传播行为是什么?...

    展开全部 Spring提供了许多内置事务管理器实现,常用的有: DataSourceTransactionManager(JDBC局部事务):62616964757a686964616fe59b9ee ...

  3. 哒哒哒~~今天说 事务的隔离级别和传播特性

    哒哒哒~~今天说 事务的隔离级别和传播特性 正所谓在数据库中,所谓事务是指一组逻辑操作单元即一组sql语句.当这个单元中的一部分操作失败,整个事务回滚,只有全部正确才完成提交. 事务的ACID属性 原 ...

  4. Spring事务的隔离级别

    事务的特性-ACID 原子性(Atomicity) 原子性是指事务包含的所有操作要么全部成功,要么全部失败回滚,因此事务的操作如果成功就必须要完全应用到数据库,如果操作失败则不能对数据库有任何影响. ...

  5. 事物的级别_实战分析:事务的隔离级别和传播属性

    什么是事务? 要么全部都要执行,要么就都不执行. 事务所具有的四种特性 原子性,一致性,隔离性,持久性 原子性 个人理解,就是事务执行不可分割,要么全部完成,要么全部拉倒不干. 一致性 关于一致性这个 ...

  6. Java事务的ACID属性和四种隔离级别和传播机制

    事务的ACID属性 数据库管理系统中事务(transaction)的四个特性(分析时根据首字母缩写依次解释):原子性(Atomicity).一致性(Consistency).隔离性(Isolation ...

  7. 事务的隔离级别和传播行为!

    一.什么是事务? 事务:是数据库操作的最小工作单元,是作为单个逻辑工作单元执行的一系列操作:这些操作作为一个整体一起向系统提交,要么都执行.要么都不执行:事务是一组不可再分割的操作集合(工作逻辑单元) ...

  8. Spring→事务、隔离级别、事务传播行为、编程式事务控制、XML配置声明式事务(原始方式)、XML配置声明式事务(基于tx/aop)、@注解配置声明式事务、优势总结

    事务 Spring事务管理 不考虑隔离引发问题 隔离级别 事务传播行为 演示环境搭建 编程式事务控制 XML配置声明式事务(原始方式) XML配置声明式事务(基于tx/aop) @注解配置声明式事务 ...

  9. 框架:Spring事务的隔离级别

    1. 首先,说说什么事务(Transaction) 事务,就是一组操作数据库的动作集合.事务是现代数据库理论中的核心概念之一. 如果一组处理步骤或者全部发生或者一步也不执行,我们称该组处理步骤为一个事 ...

最新文章

  1. 2017SDN市场一片繁荣,全球企业纷纷“亮剑“
  2. 一文了解5G是什么,将如何影响我们的未来
  3. jquery的contains如何实现精准匹配
  4. GIS数据的查找,插入,删除,更新(ArcEngine)
  5. w3c java_无法从W3C加载Java类
  6. 系统业务逻辑书籍_「樊登读书会强推:免费送10本绝密书」彻底改变你的逻辑思维能力...
  7. python 增量备份mysql_Python 生产环境MySQL数据库增量备份脚本
  8. 《一秒学会C++》异步回调函数(C++11)
  9. 爬虫入门(简单网页信息爬取)
  10. java8实战教程,[JAVA] 汪大神Java8新特性及实战视频教程完整版
  11. C语言实现 掷骰子游戏
  12. openwrt绑定ddns花生壳域名
  13. 选对流程引擎,玩转流程设计不是梦
  14. 如何使用VC编译.C文件或者CXX文件?
  15. 【Python教程】十三、我连对象都找不到还让我用对象?类与对象(一)
  16. Android WebView字体放大
  17. 用JAVA写一个画图程序(课程设计)
  18. kubernetes之volumes使用
  19. Win10 任务管理器的 N 多技巧:老鸟也未必知道
  20. YOLOV5的数据处理 增强技术

热门文章

  1. boost::spirit模块实现使用迭代器位置注释 AST的测试程序
  2. MRU 列表序列化的 Boost.MultiIndex 示例
  3. boost::hana::detail::type_at用法的测试程序
  4. boost::hana::monadic_fold_left用法的测试程序
  5. boost::fruchterman_reingold_force_directed_layout用法的测试程序
  6. boost::fusion::join用法的测试程序
  7. Boost:基于Boost的阻塞tcp echo的测试程序
  8. DCMTK:“内容映射资源”Content Mapping Resource中的各种CIDxxx和TIDxxx类的测试程序
  9. VTK:可视化之TextureMapQuad
  10. OpenCV导出模板参数文件