Spring Transaction 中循环内的代码不会回滚
我在服务类中有以下代码结构。问题是在发生异常时,事务仅回滚“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你最好检查方法 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?
谢谢大家,我没有注意到我的一个表不是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.