当前位置:网站首页>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 ;
边栏推荐
- Usage and usage instructions of JDBC connection pool
- Data communication foundation - dynamic routing protocol rip
- vlunhub- BoredHackerBlog Moriarty Corp
- SQL injection sqllabs (basic challenges) 11-20
- 记录一下树莓派搭建环境中遇到的坑。。。
- RLock锁的使用
- Modify PyUnit_ Time makes it support the time text of 'xx~xx months'
- vulnhub-Root_ this_ box
- MySQL5.7的JSON基本操作
- SQL injection sqllabs (basic challenges) 1-10
猜你喜欢
随机推荐
Definition of episodic and batch
I'm fat, huh
MySQL table field adjustment
17.[STM32]仅用三根线带你驱动LCD1602液晶
如何将 DevSecOps 引入企业?
Arduino controls a tiny hexapod 3D printing robot
写单元测试的时候犯的错
[Netease Yunxin] research and practice of super-resolution technology in the field of real-time audio and video
obj解析为集合
JS topic - console log()
Data communication foundation - route republication
Value series solution report
String modification problem solving Report
Noi / 1.3 01: a+b problem
Codasip adds verify safe startup function to risc-v processor series
Summary of the third class
Vulnhub-Moneybox
开发中Boolean类型使用遇到的坑
对象和类的关系
episodic和batch的定义

![18.[STM32]读取DS18B20温度传感器的ROM并实现多点测量温度](/img/e7/4f682814ae899917c8ee981c05edb8.jpg)







