首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring宣言事务管理不起作用 不回滚

2013-04-21 
spring声明事务管理不起作用 不回滚是因为使用的springMVC和spring对注解的扫描冲突 所以要区别开 springm

spring声明事务管理不起作用 不回滚
是因为使用的springMVC和spring对注解的扫描冲突 所以要区别开 springmvc提前注册了service层导致@transaction注解没有起作用


mvc 的只扫描controller组件 注意使用 use-default-filters="false"
<context:component-scan base-package="com.fengzhiyin" use-default-filters="false" >
<context:include-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>

主体的扫描除controller外的所有组件
<context:component-scan base-package="com.fengzhiyin" >
<context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>

热点排行