Spring+SpringMVC配置事务管理无效原因及解决办法详解
一般我们在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配置事务管理无效原因及解决办法详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
相关文章
Springboot使用Redis中ZSetOperations实现博客访问量
在日常的网站使用中,经常会碰到页面的访问量,本文主要介绍了Springboot使用Redis中ZSetOperations实现博客访问量,具有一定的参考价值,感兴趣的可以了解一下2024-01-01
最新评论