zoukankan      html  css  js  c++  java
  • Spring Transaction Propagation

    原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/11530611.html

    REQUIRED behavior

    Spring REQUIRED behavior means that the same transaction will be used if there is an already opened transaction in the current bean method execution context. If there is no existing transaction the Spring container will create a new one. If multiple methods configured as REQUIRED behavior are called in a nested way they will be assigned distinct logical transactions but they will all share the same physical transaction. In short this means that if an inner method causes a transaction to rollback, the outer method will fail to commit and will also rollback the transaction. Let's see an example:

    Outer bean

    @Autowired
    private TestDAO testDAO;
    
    @Autowired
    private InnerBean innerBean;
    
    @Override
    @Transactional(propagation=Propagation.REQUIRED)
    public void testRequired(User user) {
      testDAO.insertUser(user);
      try{
        innerBean.testRequired();
      } catch(RuntimeException e){
        // handle exception
      }
    }

    Inner bean

    @Override
    @Transactional(propagation=Propagation.REQUIRED)
    public void testRequired() {
      throw new RuntimeException("Rollback this transaction!");
    }

    Note that the inner method throws a RuntimeException and is annotated with REQUIRED behavior. This means that it will use the same transaction as the outer bean, so the outer transaction will fail to commit and will also rollback.

    REQUIRES_NEW behavior

    REQUIRES_NEW behavior means that a new physical transaction will always be created by the container. In other words the inner transaction may commit or rollback independently of the outer transaction, i.e. the outer transaction will not be affected by the inner transaction result: they will run in distinct physical transactions.

    Outer bean

    @Autowired
    private TestDAO testDAO;
    
    @Autowired
    private InnerBean innerBean;
    
    @Override
    @Transactional(propagation=Propagation.REQUIRED)
    public void testRequiresNew(User user) {
      testDAO.insertUser(user);
      try{
        innerBean.testRequiresNew();
      } catch(RuntimeException e){
        // handle exception
      }
    }

    Inner bean

    @Override
    @Transactional(propagation=Propagation.REQUIRES_NEW)
    public void testRequiresNew() {
      throw new RuntimeException("Rollback this transaction!");
    }

    The inner method is annotated with REQUIRES_NEW and throws a RuntimeException so it will set its transaction to rollback but will not affect the outer transaction. The outer transaction is paused when the inner transaction starts and then resumes after the inner transaction is concluded. They run independently of each other so the outer transaction may commit successfully.

    Reference

    http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/transaction/annotation/Propagation.html

    http://www.byteslounge.com/tutorials/spring-transaction-propagation-tutorial

  • 相关阅读:
    PowerDesigner_15连接Oracle11g,反向工程导出模型图
    angular学习
    GoEasy消息推送
    Spring 工作原理
    JAVA解析HTML,获取待定元素属性
    设计模式之工厂方法模式
    设计模式之单例模式
    通过Java代码获取系统信息
    centos7下NAT模式下设置静态ip
    关于在Spring项目中使用thymeleaf报Exception parsing document错误
  • 原文地址:https://www.cnblogs.com/agilestyle/p/11530611.html
Copyright © 2011-2022 走看看