Spring Transaction 中循环内的代码不会回滚

发布于 2024-09-25 23:47:49 字数 272 浏览 2 评论 0原文

我在服务类中有以下代码结构。问题是在发生异常时,事务仅回滚“insert A()”。我正在使用 spring-ibatis。

function save
{
 insert A();

 for loop_1()
 {
   insert B()
   insert C()
   insert D() 
 }

 for loop_2()
 {
  insert E()   
  insert F()  --> throws RunTimeException
 }
}

I'm having the following structure of code in the service class. The problem is in the event of the exception, the transaction only rollback for "insert A()". I'm using spring-ibatis.

function save
{
 insert A();

 for loop_1()
 {
   insert B()
   insert C()
   insert D() 
 }

 for loop_2()
 {
  insert E()   
  insert F()  --> throws RunTimeException
 }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南烟 2024-10-02 23:47:49

我认为你最好检查方法 B()、C()、D()、E() 的事务传播设置,并确保它们与方法 A()、F() 在同一物理事务中执行。

您使用哪一种:PROPAGATION_REQUIRED 或 PROPAGATION_REQUIRES_NEW?

I think you'd better check the transaction propagation setting for method B(),C(),D(),E() and make sure they are excuted in the same physical transaction with the method A(),F().

Which one do you use, PROPAGATION_REQUIRED or PROPAGATION_REQUIRES_NEW?

温折酒 2024-10-02 23:47:49

谢谢大家,我没有注意到我的一个表不是InnoDB(我使用的是mysql)。我将其更改为 InnoDB,现在事务正在运行。

Thank you all, I didn't notice one of my tables is not InnoDB (I'm using mysql). I changed it to InnoDB and now the transaction is working.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文