`

Spring_<context:component-scan>

 
阅读更多

via: http://blog.csdn.net/chunqiuwei/article/details/16115135

 

在xml配置了这个标签后,spring可以自动去扫描base-pack下面或者子包下面的java文件,如果扫描到有@Component @Controller@Service等这些注解的类,则把这些类注册为bean

 

注意:如果配置了<context:component-scan>那么<context:annotation-config/>标签就可以不用再xml中配置了,因为前者包含了后者。另外<context:annotation-config/>还提供了两个子标签

 

1.        <context:include-filter>

 

2.       <context:exclude-filter>

 

在说明这两个子标签前,先说一下<context:component-scan>有一个use-default-filters属性,改属性默认为true,这就意味着会扫描指定包下的全部的标有@Component的类,并注册成bean.也就是@Component的子注解@Service,@Reposity等。所以如果仅仅是在配置文件中这么写

 

<context:component-scan base-package="tv.huan.weisp.web"/>

 

 Use-default-filter此时为true那么会对base-package包或者子包下的所有的进行java类进行扫描,并把匹配的java类注册成bean。

 

 

 

 可以发现这种扫描的粒度有点太大,如果你只想扫描指定包下面的Controller,该怎么办?此时子标签<context:incluce-filter>就起到了勇武之地。如下所示

 

<context:component-scan base-package="tv.huan.weisp.web .controller">  

 

<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>   

 

</context:component-scan>  

 

这样就会只扫描base-package指定下的有@Controller下的java类,并注册成bean

 

但是因为use-dafault-filter在上面并没有指定,默认就为true,所以当把上面的配置改成如下所示的时候,就会产生与你期望相悖的结果(注意base-package包值得变化)

 

<context:component-scan base-package="tv.huan.weisp.web ">  

 

<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>   

 

</context:component-scan>  

 

此时,spring不仅扫描了@Controller,还扫描了指定包所在的子包service包下注解@Service的java类

 

此时指定的include-filter没有起到作用,只要把use-default-filter设置成false就可以了。这样就可以避免在base-packeage配置多个包名这种不是很优雅的方法来解决这个问题了。

 

另外在我参与的项目中可以发现在base-package指定的包中有的子包是不含有注解了,所以不用扫描,此时可以指定<context:exclude-filter>来进行过滤,说明此包不需要被扫描。综合以上说明

 

Use-dafault-filters=”false”的情况下:<context:exclude-filter>指定的不扫描,<context:include-filter>指定的扫描

分享到:
评论

相关推荐

    Spring扫描器—spring组件扫描使用详解

    在Spring框架中,`&lt;context:component-scan/&gt;`元素是核心组件扫描的基石,它允许我们自动检测和注册beans,极大地简化了配置工作。这篇博客将深入探讨这个功能强大的特性,以及如何在实际开发中有效利用它。 一、...

    Spring 报错:元素 "context:component-scan" 的前缀 "context" 未绑定的问题解决

    然而,在配置过程中,如果遇到“元素 'context:component-scan' 的前缀 'context' 未绑定”的错误,这意味着Spring无法识别和解析这个元素,因为缺少了对应的命名空间定义。 这个问题的根源在于XML配置文件中没有...

    Test05_Spring_Context_XML.rar

    在XML配置文件中,我们可以通过`&lt;context:component-scan&gt;`标签来扫描指定包下的类,以便自动发现并注册bean: ```xml &lt;context:component-scan base-package="com.example"/&gt; ``` 最后,Spring提供了多种方式来...

    spring组件扫描contextcomponent-scan使用详解.pdf

    Spring 组件扫描&lt;context:component-scan/&gt;使用详解 在 Spring 框架中,组件扫描是指通过注解和 XML 配置来自动检测和加载Bean的过程。下面将详细介绍&lt;context:component-scan/&gt;标签的使用方式和原理。 一、...

    Spring学习笔记(9)----让Spring自动扫描和管理Bean

    1. **扫描范围**:当你使用`@ComponentScan`或`&lt;context:component-scan&gt;`时,Spring会递归地扫描指定包下的所有类。你可以通过`includeFilters`和`excludeFilters`属性添加过滤规则,控制哪些类被扫描。 2. **排除...

    spring4-hibernate4-struts2整合

    &lt;context:component-scan base-package="me.gacl.dao,me.gacl.service"/&gt; &lt;/beans&gt; ``` 4. **创建配置属性文件**(`config.properties`): - 这个文件通常用于存储数据库连接信息、其他配置参数等。 - 示例...

    基于注解的Spring_3.0.x_MVC

    &lt;/context:component-scan&gt; 这将扫描 com.dn 包下的所有类,并将其作为 Bean 加载到 Spring ApplicationContext 中。同时,使用 @Controller 注解来标注控制器 Bean,例如: @Controller public class ...

    Spring框架系列(5) - 深入浅出SpringMVC请求流程和案例.doc

    &lt;context:component-scan base-package="com.example" /&gt; &lt;mvc:annotation-driven /&gt; &lt;!-- 视图解析器配置 --&gt; &lt;bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"&gt; &lt;property...

    spring5.0_mvc_maven项目_HelloWorld实例

    &lt;context:component-scan base-package="com.yourpackage"/&gt; &lt;mvc:annotation-driven/&gt; &lt;!-- 视图解析器配置 --&gt; &lt;bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"&gt; ...

    [新手-图文]整合ssm框架-从mybatis到spring-mybatis再到ssm-sping-mybatis-spingmvc

    &lt;context:component-scan base-package="cn.abc.controller"/&gt; &lt;/beans&gt; ``` ##### 5.2 配置web.xml 设置`context-param`和`ContextLoaderListener`以启动Spring和Spring MVC。 **示例代码**: ```xml &lt;!-- web....

    SPRING MVC3.2案例讲解---配置

    &lt;context:component-scan base-package="com.yourcompany.yourproject.controller" /&gt; &lt;!-- 配置视图解析器 --&gt; &lt;bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"&gt; &lt;property...

    java8+tomcat8+struts2.5+spring4.3+hibernate5.2框架搭建详细过程

    &lt;context:component-scan base-package="com.example"/&gt; &lt;bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"&gt; &lt;property name="driverClassName" value=...

    关于Spring的spring-beans-xsd和tx-xsd aop-xsd等

    它包括了如`&lt;context:component-scan&gt;`、`&lt;context:annotation-config&gt;`等元素,使得我们可以方便地启用注解驱动的配置和组件扫描,发现并自动装配带有特定注解的类。此外,它还支持消息源、AOP代理、事件监听等特性...

    Spring_AOP开发

    }}*/2、配置类:配置中启用扫描,使Spring能找到切面类:&lt;context:component-scan base-package="com.test"/&gt;&lt;/beans&gt;四、基于 XML 配置进行 AOP 开发:在 XML 文件中配置切面、通知、切入点等信息,例如:&lt;aop:...

    spring_tx_aspectj方式源码

    1. **启用注解驱动**:在Spring主配置文件中,添加`&lt;context:component-scan&gt;`标签扫描带有注解的类,并启用`&lt;tx:annotation-driven&gt;`标签来激活基于注解的事务管理。 2. **事务注解**:在需要事务管理的方法上使用...

    spring_MVC源码

    09. &lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt; 10. &lt;/listener&gt; 11. 12. &lt;servlet&gt; 13. &lt;servlet-name&gt;spring&lt;/servlet-name&gt; 14. &lt;servlet-class&gt;org.spring...

    spring-mvc-4.2.xsd.zip

    这个文件包含了所有在Spring MVC 4.2版本中可以使用的XML配置元素和属性,例如`&lt;mvc:annotation-driven&gt;`、`&lt;bean&gt;`、`&lt;context:component-scan&gt;`等。这些配置元素允许开发者声明式地配置控制器、视图解析器、转换...

    Spring配置文件spring-context.zip

    7. `&lt;context:component-scan&gt;`:通过注解扫描特定包下的类,自动发现并注册带有特定注解(如@Controller、@Service、@Repository和@Service)的bean。 8. `&lt;context:annotation-config&gt;`:激活对注解的处理,如@...

    Developing a Spring Framework MVC application step-by-step

    &lt;context:component-scan base-package="com.example.myapp" /&gt; &lt;bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"&gt; &lt;property name="prefix" value="/WEB-INF/views/" /&gt; ...

    spring-context-4.2.xsd.zip

    例如,`&lt;context:component-scan&gt;`元素可以自动扫描并注册带有特定注解的bean,极大地简化了代码配置。 总结而言,`spring-context-4.2.xsd`是Spring 4.2版本Context模块的核心配置规范,它定义了Spring XML配置...

Global site tag (gtag.js) - Google Analytics