SpringBoot事务信息

发布于 2025-01-11 05:30:45 字数 650 浏览 0 评论 0原文

所以我试图创建嵌套事务,但它根本不起作用。

@Transactional
method1(){
    method3();
    method4();
}

method4(){
   try{
      method2();
    }catch(Exception e){
       log.error("exception found, i will retry method2() by calling method4()");
       method4();
    }
}

@Transactional
method2(){
   //do something
}
@Transactional
method3(){
   //do something
}

所以我的要求是这样的,方法 1 的事务应该按预期工作,假设 method4() 成功,并且已提交。 现在假设 method3() 发生了一些异常,现在我期望 method4(内部方法 2)的提交被恢复,因为它是 method1() 事务的一部分。 但我看到的是,即使 method3 失败/异常,method2 的提交也不会回滚。理想情况下,它不应该回滚吗,因为它是 method1 事务的一部分?

我在这里做错了什么吗?

So I was trying to create nested transactions but it's not working at all..

@Transactional
method1(){
    method3();
    method4();
}

method4(){
   try{
      method2();
    }catch(Exception e){
       log.error("exception found, i will retry method2() by calling method4()");
       method4();
    }
}

@Transactional
method2(){
   //do something
}
@Transactional
method3(){
   //do something
}

So my requirement is like this, method 1's transactional should work as expected, let's say method4() was successful, and its committed.
Now let's say there happened to be some exception on method3(), now I was expecting method4(internally method 2)'s commit to be reverted as it's a part of method1()'s transaction..
But what I see is, even with method3's failure/exception, commit of method2 is not rolling back. Shouldn't it ideally roll back as it's a part of method1's transaction?

M i doing something wrong here?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文