好大滴坑, Spring MVC覆盖了Trsaction

来源:互联网 发布:淘宝如何秒杀成功率高 编辑:程序博客网 时间:2024/06/08 07:57

好大滴坑, Spring MVC覆盖了Trsaction

解决方案:

<!-- package-scan 4 Spring MVC --><context:component-scan base-package="com.bingbang" use-default-filters="false">    <context:include-filter type="regex" expression=".*Controller"/></context:component-scan><!-- package-scan 4 Service --><context:component-scan base-package="com.bingbang" >    <context:exclude-filter type="regex" expression=".*Controller"/></context:component-scan>
1 0