2020年4月29日
摘要: @Sevice public class Test { public void a(){ b(); } @Transactional public void b(){ System.out.print("b"); } } 此时事务时不生效的,因为@Transactional注解事务是通过代理来控制的 阅读全文
posted @ 2020-04-29 20:20 Joequa 阅读(2035) 评论(0) 推荐(0) 编辑