try catch导致@Transactional回滚失败

Posted penghq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了try catch导致@Transactional回滚失败相关的知识,希望对你有一定的参考价值。

原因分析见:https://www.cnblogs.com/pjjlt/p/10926398.html

解决办法:catch中手动回滚。

try {
           
}catch (Exception e){
   //手动回滚
   TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();
}

 

以上是关于try catch导致@Transactional回滚失败的主要内容,如果未能解决你的问题,请参考以下文章

spring事务管理中,用try-catch处理了异常,事务也会回滚?

Spring 事务失效的八种场景

在 try-catch 块中包装循环会导致性能问题吗? [复制]

JAVA08_org.springframework.transaction.UnexpectedRollbackException

Scanner Try Catch语句导致java.util.InputMismatchException

try-catch之后就万事大吉不会抛出异常给调用者了吗