首页 > 代码库 > 23. Spring 事务注解@Transactional和异常捕获
23. Spring 事务注解@Transactional和异常捕获
一. 事务注解限制条件
1. 不允许在private方法上面
2. 不能在非事务方法里面调用事务方法
二. 实现机制-异常捕获
Describes transaction attributes on a method or class. This annotation type is generally directly comparable to Spring‘s org.springframework.transaction.interceptor.RuleBasedTransactionAttribute class, and in fact AnnotationTransactionAttributeSource will directly convert the data to the latter class, so that Spring‘s transaction support code does not have to know about annotations. If no rules are relevant to the exception, it will be treated like org.springframework.transaction.interceptor.DefaultTransactionAttribute (rolling back on RuntimeException and Error but not on checked exceptions). For specific information about the semantics of this annotation‘s attributes, consult the org.springframework.transaction.TransactionDefinition and org.springframework.transaction.interceptor.TransactionAttribute javadocs.
所以如果操作数据库的时候把异常捕获了,那么将不能回滚。
三. 手动回滚
TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();
所以为了解决这种矛盾,可以捕获异常后,在catch里面手动调用回滚。
本文出自 “www.bogo.com” 博客,请务必保留此出处http://483181.blog.51cto.com/473181/1937481
23. Spring 事务注解@Transactional和异常捕获
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。