Spring+SpringMVC配置事务管理无效原因及解决办法详解
程序员文章站
2023-12-17 16:06:04
一般我们在spring的配置文件application.xml中对service层代码配置事务管理,可以对service的方法进行aop增强或事务处理如事务回滚,但是遇到一...
一般我们在spring的配置文件application.xml中对service层代码配置事务管理,可以对service的方法进行aop增强或事务处理如事务回滚,但是遇到一个问题,在controller类中调用service层方法,配置的事务管理会失效,查询相关资料发现原因。其实spring和springmvc俩个容器为父子关系,spring为父容器,而springmvc为子容器。也就是说application.xml中应该负责扫描除@controller的注解如@service,而springmvc的配置文件应该只负责扫描@controller,否则会产生重复扫描导致spring容器中配置的事务失效。
因此正确的配置方式应该为:
spring的配置文件:application.xml
<context:component-scan base-package="org.bc.redis" use-default-filters="true"> <!-- 排除含@controller注解的类 --> <context:exclude-filter type="annotation" expression="org.bc.redis.controller.usercontroller"/> </context:component-scan>
或者
<!-- 指定扫描的包,避开包含@controller注解的包 --> <context:component-scan base-package="org.bc.redis.service" use-default-filters="true"> </context:component-scan>
springmvc的配置文件:springmvc.xml
<!-- 只扫描含@controller注解的包,避免重复扫描 --> <context:component-scan base-package="org.bc.redis.controller" use-default-filters="true"> </context:component-scan>
最后
经过测试,其实问题主要在于springmvc的配置文件扫包范围,spring的配置文件就算也扫了@controller注解,但是在springmvc会重新扫描一次,事务管理的service只要没被重新扫描就不会出现事务失效问题。
总结
以上就是本文关于spring+springmvc配置事务管理无效原因及解决办法详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!