摘要: # Spring事务的七种传播行为 **首先举例事务的嵌套:** ```java ServiceA { void methodA() { ServiceB.methodB(); } } ServiceB { void methodB() { } } ``` *其中ServiceA#methodA(我 阅读全文
posted @ 2023-07-26 15:11 在谷歌上百度 阅读(179) 评论(0) 推荐(0) 编辑