springMVC+MyBatis+Spring 整合(4) ---解决Spring MVC 对AOP不起作用的问题

 

解决Spring MVC 对AOP不起作用的问题

分类: SpringMVC3x+Spring3x+MyBatis3x myibaits spring J2EE   640人阅读  评论(1)  收藏  举报
用的是 SSM3的框架 Spring MVC 3.1 + Spring 3.1 + Mybatis3.1

第一种情况
Spring MVC 和 Spring 整合的时候,SpringMVC的springmvc.xml文件中 配置扫描包,不要包含 service的注解,Spring的applicationContext.xml文件中 配置扫描包时,不要包含controller的注解,如下所示:
SpringMVC的xml配置:
<!-- 自动扫描controller包下的所有类,使其认为spring mvc的控制器,只扫描controller注解 -->
    <!-- <context:component-scan base-package="com.sd..controller" /> -->
    <context:component-scan base-package="com.sd..*.controller"
        use-default-filters="false">
        <!-- 扫描符合 @Controller的类 -->
        <context:include-filter type="annotation"
            expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

 

Spring MVC 启动时的配置文件,包含组件扫描、 url 映射以及设置 freemarker 参数,让 spring 不扫描带有 @Service 注解的类。为什么要这样设置?因为 springmvc.xml 与 applicationContext.xml 不是同时加载,如果不进行这样的设置,那么, spring就会将所有带@Service注解的类都扫描到容器中,等到加载applicationContext.xml的时候,会因为容器已经存在Service类,使得cglib将不对Service进行代理,直接导致的结果就是在 applicationContext 中的事务配置不起作用,发生异常时,无法对数据进行回滚。以上就是原因所在。
同样的在Spring的xml配置如下:
    <context:component-scan base-package="com.sd">
        <!-- 不扫描 @Controller的类 -->
        <context:exclude-filter type="annotation"
            expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

 

扫描包路径,不扫描带有 @Controller 注解的类。因为这些类已经随容器启动时,在 springmvc.xml 中扫描过一遍了。
完成以上工作

注意以上几点就OK了。
 
这是转载文章...........
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值