当前位置:网站首页>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 :
- 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
- PROPAGATION_SUPPORTS: Support current transaction , If there is no current transaction , Just in a non transactional way .
- PROPAGATION_MANDATORY: Use the current transaction , If there is no current transaction , Throw an exception .
- PROPAGATION_REQUIRES_NEW: New transaction , If there are currently transactions , Suspend current transaction .
- PROPAGATION_NOT_SUPPORTED: Perform operations in a non transactional way , If there are currently transactions , Suspend the current transaction .
- PROPAGATION_NEVER: To execute in a non transactional manner , If there are currently transactions , Throw an exception .
- 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 :
- Deeply understand the meaning of each state of transaction propagation , such as PROPAGATION_REQUIRED、PROPAGATION_SUPPORTS、PROPAGATION_MANDATORY、PROPAGATION_REQUIRES_NEW etc.
- 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 .
- 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 ;
边栏推荐
猜你喜欢

Codasip adds verify safe startup function to risc-v processor series
![19.[STM32]HC_SR04超声波测距_定时器方式(OLED显示)](/img/fe/8f59db28823290da8e9280df06673d.jpg)
19.[STM32]HC_SR04超声波测距_定时器方式(OLED显示)

F. Min cost string problem solving Report

Data communication foundation - routing communication between VLANs

把 ”中台“ 的思想迁移到代码中去

Appium automation test foundation - appium basic operation API (II)

obj集合转为实体集合

Appium automation test foundation - appium basic operation API (I)

ES6深入—ES6 Generator 函数

MySQL giant pit: update updates should be judged with caution by affecting the number of rows!!!
随机推荐
verilog实现计算最大公约数和最小公倍数
事务回滚异常
Linear DP (basic questions have been updated)
Replknet: it's not that large convolution is bad, but that convolution is not large enough. 31x31 convolution. Let's have a look at | CVPR 2022
vlunhub- BoredHackerBlog Social Network
Why should we learn mathematical modeling?
Maximum common subsequence
19.[STM32]HC_SR04超声波测距_定时器方式(OLED显示)
Verilog realizes the calculation of the maximum common divisor and the minimum common multiple
MySQL表字段调整
如何将 DevSecOps 引入企业?
Summary of the third class
20. [stm32] realize the function of intelligent garbage can by using ultrasonic module and steering gear
Basic JSON operations of MySQL 5.7
Appium automation test foundation - appium basic operation API (I)
Noi / 1.4 07: collect bottle caps to win awards
Use of RLOCK lock
Record the pits encountered in the raspberry pie construction environment...
sql中查询最近一条记录
【网易云信】超分辨率技术在实时音视频领域的研究与实践