当前位置:网站首页>Transaction rollback exception

Transaction rollback exception

2022-07-05 15:58:00 Ant HJK

org.springframework.transaction.UnexpectedRollbackException

Spring The transaction propagation mechanisms are summarized as follows :

  1. PROPAGATION_REQUIRED: If there is no current transaction , Just create a new transaction , If a transaction already exists , Just join in this business . The default policy
  2. PROPAGATION_SUPPORTS: Support current transaction , If there is no current transaction , Just in a non transactional way .
  3. PROPAGATION_MANDATORY: Use the current transaction , If there is no current transaction , Throw an exception .
  4. PROPAGATION_REQUIRES_NEW: New transaction , If there are currently transactions , Suspend current transaction .
  5. PROPAGATION_NOT_SUPPORTED: Perform operations in a non transactional way , If there are currently transactions , Suspend the current transaction .
  6. PROPAGATION_NEVER: To execute in a non transactional manner , If there are currently transactions , Throw an exception .
  7. PROPAGATION_NESTED: If there are currently transactions , Within the nested transaction . If there is no current transaction , Enforcement and PROPAGATION_REQUIRED Similar operation .
    nested The sub exception of is thrown If you are catch External insertion succeeded
    nested The sub exception of is thrown If not catch External insert failed
    nested An exception is thrown outside nest Internal insertion succeeded nest Will roll back

spring The default propagation behavior of transactions :
@Transactional be equal to @Transactional(propagation=Propagation.REQUIRED)

Description of the abnormal scenario :
In the use of Spring In business , In a business A There is another transaction in B( That is, there are nested transactions ), When a transaction B When something goes wrong , Will be abnormal catch Post transaction B Rollback operation will be performed , If the abnormality is eaten directly at this time ( It's business A There is no way to know that an exception has occurred ), The transaction A The above exception will be thrown .

for example :

 serviceA Affairs @Transactional
 serviceB Affairs @Transactional
 
  serviceA.methodA() 
 {  
       doSomethingA();  
      try {  
             serviceB.methodB{}; // There are exceptions marked as rollback , doSetRollbackOnly(status);  
          }
           catch {  
                // Catch exception go to commit when , Because it has been marked for rollback , Roll back and throw a new exception     
               }         
       doSomethingB();  
  }   

reason :
because methodB The propagation property of is set to PROPAGATION_REQUIRED,PROPAGATION_REQUIRED It means , There's business at the moment , Use the current transaction , If there is no transaction at present, create a transaction . because methodA The propagation property of is also PROPAGATION_REQUIRED, therefore methodA Will create a transaction , then methodB And methodA Use the same transaction ,methodB After exception , Rollback the current transaction flag bit , Because in methodA I did it. trycatch Handle , The program didn't stop but went on , When a transaction commit when ,check state , Find out , need Transaction rollback , Therefore, unpredictable transaction exceptions will occur : Because the transaction is rolled back by the flag bit , So transaction rollback .
in other words :methodA And methodB Share a transaction ,methodB Mark the transaction as rollback ,methodA in commit This business , then , The transaction has been marked as rolled back (methodB logo ) Exception information for .

Solution
situation 1:methodA And methodB Logically, it should not belong to the same transaction , It will be methodB The transaction propagation attribute of is modified to PROPAGATION_REQUIRES_NEW, such , perform methodB when , A new transaction will be created , No effect methodA The transaction .

situation 2: Business A And business B In business logic, it should belong to the same transaction , It will be methodA Medium try catch Get rid of

situation 3: Business A And business B In business logic, it should belong to the same transaction , however methodB The failure of the cannot affect methodA Transaction commit for , So still methodA in try catch methodB, And will methodB Set to PROPAGATION_NESTED, It means ,methodB It's a sub transaction , There is one savepoint, If it fails, it will be rolled back to savepoint, No effect methodA, If it succeeds A、B Submit... Together ,A And B It's all a business , It's just B It's a sub transaction .
situation 4: Business A Whether there is a transaction has no impact Remove business A Of @Transactional

Summary :

  1. Deeply understand the meaning of each state of transaction propagation , such as PROPAGATION_REQUIRED、PROPAGATION_SUPPORTS、PROPAGATION_MANDATORY、PROPAGATION_REQUIRES_NEW etc.
  2. At first I thought it was because spring In profile ,methodA Transaction set to ready-only=true( Read only transactions ) Why , After searching the information, we know that , Read only transactions do not conflict with transaction propagation , There are two mechanisms . Read only transactions , It's a special matter , Within this transaction , It can only be a query statement , Cannot contain modifications 、 UPDATE statement , The database may optimize read-only transactions ; Propagation attribute is the expression of the relationship between parent method and child method .
  3. Be careful , In the same class , Transaction nesting is subject to the outermost method , Nested transactions fail ; Transactions nested in different classes will take effect ;
原网站

版权声明
本文为[Ant HJK]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/186/202207051526232557.html