一般我们在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只要没被重新扫描就不会出现事务失效问题。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/124718.html