SpringBoot 自动开启事务原理

徘徊边缘 提交于 2019-11-26 21:35:23

1,TransactionAutoConfiguration

①,这是SpringBoot 的事务注解自动配置类,位于spring-boot-autoconfigure jar下。

②,@ConditionalOnClass(PlatformTransactionManager.class) 通过这一行,我们知道只有在类路径下有这个类存在时,事务自动配置类才生效

③,PlatformTransactionManager 位于spring-tx jar下

2,spring-boot-starter-jdbc.jar 的依赖 

3,spring-boot-starter-data-jpa 

①,spring-boot-starter-data-jpa 依赖于spring-boot-starter-jdbc

4,mybatis-spring-boot-starter

①,mybatis-spring-boot-starter 依赖于spring-boot-starter-jdbc

5,总结

①,因为,jdbc,jpa,mybatis 的starter 都会依赖到 spring-tx.jar 所以事务注解会生效。

②,如有不对,还请大家指出

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!