springmvc mybatis 事务管理不生效原因

来源:互联网 发布:魔法王座麒麟进阶数据 编辑:程序博客网 时间:2024/05/24 07:09

spring-mvc事务配置如下

<tx:advice id="transactionAdvice" transaction-manager="transactionManager">

<tx:attributes>
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="append*" propagation="REQUIRED" />
<tx:method name="insert*" propagation="REQUIRED" />
<tx:method name="save*" propagation="REQUIRED" />
<tx:method name="update*" propagation="REQUIRED" />
<tx:method name="modify*" propagation="REQUIRED" />
<tx:method name="edit*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED"/>
<tx:method name="remove*" propagation="REQUIRED" />
<tx:method name="repair" propagation="REQUIRED" />
<tx:method name="withdrawals" propagation="REQUIRED" />
<tx:method name="pay" propagation="REQUIRED" />
<tx:method name="get*" propagation="SUPPORTS" />
<tx:method name="find*" propagation="SUPPORTS" />
<tx:method name="select*" propagation="SUPPORTS" />

<tx:method name="*" rollback-for="Exception" />
</tx:attributes>
</tx:advice>

<aop:config>
<aop:pointcut id="transactionPointcut"
expression="execution(* com.*.service.impl.*.*(..))" />
<aop:advisor pointcut-ref="transactionPointcut"
advice-ref="transactionAdvice" />

</aop:config> 


但在service允许代码报错后,事务回滚不生效

根据 百度上的一些情况也总结了几种

第一种在针对事务的类中抛出RuntimeException异常,而不是抛出Exception。

第二种: 不能在方法中使用try catch抛出异常,不然不会回滚

第三种:

  1. mysql默认存储引擎为MyISAM是不支持事务的,  
  2. 需要设置为InnoDB模式,通过show engines; 命令看到  

第4种:上面3种适用后都没有效果百度到第4种方式

  1.  1.root-context.xml   
  2. <!-- 不扫描带有@Controller注解的类。因为这些类已经随容器启动时,在servlet-context中扫描过一遍了 -->   
  3. <context:component-scan base-package="com.kimho">   
  4. <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>   
  5. </context:component-scan>   
  6.   
  7. 2、servlet-context.xml:   
  8. <!-- 扫描业务组件,让spring不扫描带有@Service注解的类(留在root-context.xml中扫描@Service注解的类),防止事务失效 -->   
  9. <context:component-scan base-package="com.kimho">   
  10. <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>   
  11. </context:component-scan>   
将在spring-mvc.xml下的

<context:component-scan base-package="com.aa.*" >
</context:component-scan>

改成

<context:component-scan base-package="com.aa.*" >
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Service" />
</context:component-scan>

进行扫描 既可

0 0
原创粉丝点击