zoukankan      html  css  js  c++  java
  • Spring自动扫描注解类的冲突问题

    原文地址:http://www.blogjava.net/crazycy/archive/2014/07/12/415738.html

    Spring MVC项目中通常会有二个配置文件,spring-servlet.xml和applicationContext.xml二个配置文件,通常会出现以下几个配置

    1. <context:annotation-config />

    它的作用是隐式地向 Spring 容器注册  
    - AutowiredAnnotationBeanPostProcessor、
    - CommonAnnotationBeanPostProcessor、
    - PersistenceAnnotationBeanPostProcessor、
    - RequiredAnnotationBeanPostProcessor 这4个BeanPostProcessor。

    其作用是如果你想在程序中使用注解,就必须先注册该注解对应的类,如下图所示:

    依赖的类 注解
    CommonAnnotationBeanPostProcessor @Resource 、@PostConstruct、@PreDestroy
    PersistenceAnnotationBeanPostProcessor的Bean @PersistenceContext
    AutowiredAnnotationBeanPostProcessor Bean @Autowired
    RequiredAnnotationBeanPostProcessor @Required

      当然也可以自己进行注册:

    <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor "/>  
    <bean class="org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor"/>


    2. <context:component-scan base-package="com.*" >

    <context:component-scan/> 配置项不但启用了对类包进行扫描以实施注释驱动 Bean 定义的功能,同时还启用了注释驱动自动注入的功能(即还隐式地在内部注册了 AutowiredAnnotationBeanPostProcessor 和 CommonAnnotationBeanPostProcessor),因此当使用 <context:component-scan/> 后,就可以将 <context:annotation-config/> 移除了。


    在这里有一个比较有意思的问题,就是扫描是否需要在二个配置文件都配置一遍,我做了这么几种测试:

                

      (1)只在applicationContext.xml中配置如下

        <context:component-scan base-package="com.login" />

      启动正常,但是任何请求都不会被拦截,简而言之就是@Controller失效

      (2)只在spring-servlet.xml中配置上述配置

      启动正常,请求也正常,但是事物失效,也就是不能进行回滚

      (3)在applicationContext.xml和spring-servlet.xml中都配置上述信息

      启动正常,请求正常,也是事物失效,不能进行回滚

      (4)在applicationContext.xml中配置如下

        <context:component-scan base-package="com.login" />

      在spring-servlet.xml中配置如下

        <context:component-scan base-package="com.sohu.login.web" />

      此时启动正常,请求正常,事物也正常了。

      结论:在spring-servlet.xml中只需要扫描所有带@Controller注解的类,在applicationContext中可以扫描所有其他带有注解的类(也可以过滤掉带@Controller注解的类)。


    3. <mvc:annotation-driven />

      它会自动注册DefaultAnnotationHandlerMapping 与AnnotationMethodHandlerAdapter

    4. use-default-filters="true"   这就意味着会扫描指定包下的全部的标有@Component的类,并注册成bean.也就是@Component的子注解@Service,@Reposity等

    5. <mvc:default-servlet-handler/> 

    望静态资源由WEB服务器默认的Servlet来处理

               

    出处:http://www.cnblogs.com/fangqi/archive/2012/12/11/2812745.html
  • 相关阅读:
    保存ADO的记录集为XML文件
    [C++] Undefined reference to vtable
    Csdn博客的一个bug
    深入解析ATL(第二版ATL8.0)(1.111.13节)
    不同操作系统下记事本的换行符号
    dom4j学习总结(一)
    关于firefox的copy/paste的问题
    php URL编码解码函数
    php连接MySQL数据库的一些问题
    使用 jQuery progressBar 做文件上传的进度条指示
  • 原文地址:https://www.cnblogs.com/newlangwen/p/6767683.html
Copyright © 2011-2022 走看看