spring 事务不起作用原因
程序员文章站
2022-07-13 07:59:02
...
spring事务不起作用
今天遇到一个问题,以前都已经配置好并且事务测试都能够回滚的事务,突然不能回滚了,遇到这问题,我就着手进行问题排查,
第一步:spring 事务配置,表达式是否包含对应的方法
<!-- spring 事务 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="create*" read-only="false" propagation="REQUIRED" rollback-for="java.lang.Exception" /> <tx:method name="intser*" read-only="false" propagation="REQUIRED" rollback-for="Exception" /> <tx:method name="get*" read-only="true" propagation="REQUIRED"/> <tx:method name="update*" read-only="false" propagation="REQUIRED" rollback-for="Exception" /> <tx:method name="del*" read-only="false" propagation="REQUIRED" rollback-for="Exception" /> <tx:method name="add*" read-only="false" propagation="REQUIRED" rollback-for="Exception" /> <tx:method name="remove*" read-only="false" propagation="REQUIRED" rollback-for="Exception" /> </tx:attributes> </tx:advice> <!-- AOP 切面 --> <aop:config> <aop:pointcut id="allMethod" expression="execution(* com.xxx.service.impl.*.*(..))" /> <aop:advisor pointcut-ref="allMethod" advice-ref="txAdvice" /> </aop:config>
排查结果是没有问题
第二步:排查代码中是否使用try catch,把异常给吃掉了
排查结果是有部分同事的代码是把异常吃掉,这种情况就需要手动抛出异常,否则spring事务管理无法截获异常,就无法进行事务回滚。所以我们必须进行手动把异常抛出去
通过在 catch 中throw new RuntimeException();
第三步:排查spring 配置文件和spring mvc配置文件扫描类是否存在重叠,如果存在重叠也会导致事务失效的
spring-mvc.xml
<context:component-scan base-package="com.xxx.action;com.xxx.service;com.xxx.api" />
application.xml
<context:component-scan base-package="com.xxx.service" />
通过比较发现,两个配置文件的,重复扫描了com.xxx.service 包,导致事务失效。
把重复扫描包去掉,事务起作用了。
推荐阅读
-
简单了解Spring中的事务控制
-
基于Spring Cloud Netflix的TCC柔性事务和EDA事件驱动示例
-
浅谈Spring事务传播行为实战
-
spring @Transaction事务回滚失败
-
spring实现jdbctemplate添加事务支持示例
-
Spring的事务机制实例代码
-
Spring事务处理流程和原理详解
-
Mybaits 源码解析 (十二)----- Mybatis的事务如何被Spring管理?Mybatis和Spring事务中用的Connection是同一个吗?
-
Spring 事务隔离与事务传播的详解与对比
-
spring事务的@Transactional使用事务不生效问题