ajjjian 2008-12-10 07:35 采纳率: 0%
浏览 419
已采纳

spring2事务中使用手工抛出异常不回滚

我使用spring的声明式事务,为一个包的下的所有*Manager的所有方法声明了事务管理,当我在一个方法里使用throw new Exception("error");手工抛出异常时,事务没有回滚,但当我在代码中间加上使用一个除以零的代码时,系统抛出by zero的异常,事务正常回滚了。相关配置如下:[code="java"]

    <aop:advisor pointcut="execution(* com.prize.service.*Manager.*(..))" advice-ref="txAdvice"/>
    </aop:config>

    <tx:advice id="txAdvice">
    <tx:attributes>
        <tx:method name="get*" read-only="true"/>
        <tx:method name="find*" read-only="true"/>
        <tx:method name="*"/>
    </tx:attributes>
</tx:advice>[/code]

请问是什么原因?如何手工让事务回滚呢?

  • 写回答

2条回答 默认 最新

  • tomcatacec 2008-12-12 21:29
    关注

    spring 文档的描述非常清楚:
    http://static.springframework.org/spring/docs/2.5.x/reference/transaction.html#transaction-declarative

    EJB CMT does not roll back the transaction automatically on an application exception (that is, a checked exception other than java.rmi.RemoteException). While the Spring default behavior for declarative transaction management follows EJB convention (roll back is automatic only on unchecked exceptions), it is often useful to customize this.
    默认对unchecked exception进行回滚。

    也可以对规定的checked exception进行回滚:

    tx:attributes


    /tx:attributes
    /tx:advice

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部