Spring 事物抛出Exception 异常时事物没有回滚

来源:互联网 发布:广州恒大淘宝老板是谁 编辑:程序博客网 时间:2024/06/06 02:16

Spring 声明式事务 只针对  RuntimeException 异常抛出时才会回滚事物,如果时Exception  抛出时是不会回滚的。

如果想要让exception 抛出时也让事物回滚 则可以在spring 配置文件中添加 一个AOP  配置:

<tx:advice id="txAdvice" transaction-manager="transactionManager">
   <tx:attributes>
     <tx:method name="*" rollback-for="com.cn.exception.ChildrenException"/>
   </tx:attributes>
 </tx:advice>

这里的 ChildrenException  是实现了 Exception 类的子类。



或者可以定义 定义 不会滚的 异常:


<tx:advice id="txAdvice">
    <tx:attributes>
       <tx:method name="update*" no-rollback-for="IOException"/>
       <tx:method name="*"/>
    </tx:attributes>
 </tx:advice>

0 0
原创粉丝点击