最佳答案
However,please note that the Spring Framework’s transaction
infrastructure code will,by default,only mark a transaction for
rollback in the case of runtime,unchecked exceptions; that is,when
the thrown exception is an instance or subclass of RuntimeException.
(Errors will also – by default – result in a rollback.) Checked
exceptions that are thrown from a transactional method will not result
in the transaction being rolled back.
即使抛出了检查异常,Spring也会提交事务,就好像一切都很好.
如果需要,您可以配置已检查异常的回滚.
喜欢
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="get*" read-only="false" rollback-for="AnyCheckedException"/>
<tx:method name="*"/>
</tx:attributes>
</tx:advice>
抛出AnyCheckedException时将执行回滚.
这可能会有所帮助:Spring transaction management with checked and unchecked exception
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。