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

  • 相关阅读:
    Class StatusesTableSeeder does not exist 如何解决
    Heroku 如何上重置 PostgreSQL 数据库
    git强制push
    Heroku登录失败
    将手机替换为*号
    使用TP自带缓存时。出现第一次拿不到数据。
    PHP实现查看邮件是否被阅读
    使用file_get_contents下载图片
    介绍几款开源好用的产品
    查看光纤卡wwn号【转载】
  • 原文地址:https://www.cnblogs.com/agilestyle/p/11530611.html
Copyright © 2011-2022 走看看