摘要: 1. @Transactional 只能被应用到public方法上, 对于其它非public的方法,如果标记了@Transactional也不会报错,但方法没有事务功能. 2. 默认遇到运行期例外(throw new RuntimeException("注释");)会回滚,即遇到不受检查(unche 阅读全文
posted @ 2018-02-24 17:28 車輪の唄 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Spring Boot 使用事务非常简单,首先使用注解 @EnableTransactionManagement 开启事务支持后,然后在访问数据库的Service方法上添加注解 @Transactional 便可。 关于事务管理器,不管是JPA还是JDBC等都实现自接口 PlatformTransa 阅读全文
posted @ 2018-02-24 16:16 車輪の唄 阅读(19) 评论(0) 推荐(0) 编辑