`

spring组件扫描<context:component-scan/>详解

阅读更多

我们通过spring的以下方式去扫描com.test.scan.core包下所有类中的一下注解:@Repository@Service@Controller、@Component、@Configuration

 

<context:annotation-config />
<context:component-scan base-package="com.test.scan.core" />

 在特殊的情况下,比如一个项目涉及到多个数据源,我们写单元测试的时候,只希望每次扫描到其中一个数据源的关系类里的 @Repository@Service@Controller、@Component、@Configuration!

 

这里spring 给我们提供了5种方式排除不期望扫描的类中的@Repository@Service@Controller、@Component、@Configuration!

类型 举例 说明
annotation org.springframework.stereotype.Repository
指定扫描中是否扫描@Repository组件
assignable com.test.scan.core.userDaoImpl 指定是否扫描userDaoImpl.java这个类
aspectj com.test.scan..* 通过aop方式判断所扫描的范围
regex .test.* 通过正则表达式判断所扫描范围
custom 自定义过滤器 org.springframework.core.type.TypeFilter

annotation:

<context:component-scan base-package="com.test.scan.core" >
	<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
	<!--含义是这里我们不扫描core包下所有的@Repository注解-->
	<!--当然也可以设置为@Service、@Controller、@Component、@Configuration其中一种-->
</context:component-scan>

 assignable:

<context:component-scan base-package="com.test.scan.core" >
	<context:exclude-filter type="assignable" expression="com.test.scan.core.UserImpl"/>
	<!--含义是这里我们不扫描指定UserImpl类-->
</context:component-scan>

aspectj:

<context:component-scan base-package="com.test.scan.core" >
	<context:exclude-filter type="aspectj" expression="com.test.scan..*"/>
	<!--通过aop的方式-->
</context:component-scan>

 regex:

<context:component-scan base-package="com.test.scan.core" >
	<context:exclude-filter type="regex" expression=".test.scan.*"/>
	<!--通过aop的方式-->
</context:component-scan>

 

分享到:
评论

相关推荐

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

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

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

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

    Spring注解详解

    &lt;/context:component-scan&gt; ``` 使用注解过滤某些类: ```xml &lt;context:component-scan base-package="com.example"&gt; &lt;context:include-filter type="annotation" expression="org.springframework.stereotype....

    spring4-hibernate4-struts2整合

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

    spring mvc基础

    &lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt; &lt;/listener&gt; &lt;!-- 配置Spring MVC的前端控制器 --&gt; &lt;servlet&gt; &lt;servlet-name&gt;springMVC&lt;/servlet-name&gt; &lt;servlet-...

    springMVC框架搭建及详解

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

    自己写网页spring框架搭建

    - 通过`&lt;context:component-scan base-package="controller"/&gt;`指定要扫描的控制器包名。 - **视图解析器**: - 配置视图解析器以解析返回的视图名称为实际的视图资源。 ```xml &lt;beans xmlns=...

    SSH全注解环境搭建

    &lt;context:component-scan base-package="com.zhaolongedu"/&gt; ``` - 配置Spring事务管理器: ```xml &lt;bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager"&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....

    maven搭建SSM框架

    &lt;context:component-scan base-package="com.example.ssm.controller" /&gt; ``` 3. **Web.xml 配置**: - 配置`ContextLoaderListener`和`DispatcherServlet`。 - 示例代码如下: ```xml &lt;listener&gt; &lt;listener...

    spring3.0依赖注入详解

    本文将深入探讨Spring 3.0中依赖注入的新特性,特别是如何使用`@Repository`、`@Service`、`@Controller`和`@Component`注解来标记类为Bean,以及如何利用`&lt;context:component-scan/&gt;`元素自动扫描和注册这些Bean。...

    spring mvc

    当在Spring配置文件中加入`&lt;context:component-scan base-package="leot.test"/&gt;`,Spring会扫描指定包(本例中为"leot.test")及其子包下的所有类,查找带有上述注解的类,并将其注册为Spring管理的Bean。...

    IDEASSM框架实战CRUDSSM整合配置MyBatis逆向工程.docx

    &lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt; &lt;/listener&gt; &lt;!-- Spring MVC的前端控制器 --&gt; &lt;servlet&gt; &lt;servlet-name&gt;dispatcherServlet&lt;/servlet-name&gt; ...

    springmvc+mybatis+oracle

    &lt;context:component-scan base-package="com.example.controller" /&gt; &lt;!-- 自定义拦截器配置 --&gt; &lt;mvc:interceptors&gt; &lt;bean class="com.example.interceptor.MyInterceptor" /&gt; &lt;/mvc:interceptors&gt; &lt;/beans&gt; ...

    java整合SSM框架

    &lt;artifactId&gt;spring-context&lt;/artifactId&gt; &lt;version&gt;${spring.version}&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.springframework&lt;/groupId&gt; &lt;artifactId&gt;spring-webmvc&lt;/artifactId&gt; &lt;version&gt;${...

    SpringMVC入门

    - **扫描包含Controller的包**:通过`&lt;context:component-scan&gt;`元素指定需要扫描的包。 - **不处理静态资源**:通过`&lt;mvc:default-servlet-handler/&gt;`让Servlet容器处理静态资源。 - **启用注解驱动**:使用`&lt;mvc:...

    JSP 中spring事务配置详解.docx

    在这个配置中,`&lt;context:component-scan&gt;`用于自动扫描指定包下的类,发现`@Repository`、`@Service`等注解并进行注册。`&lt;context:annotation-config&gt;`启用对注解的处理,使得我们可以使用`@Transactional`注解来...

    Spring环境配置

    1. **自动扫描**:使用`&lt;context:component-scan&gt;`标签自动扫描指定包下的组件,并注册为Bean。 2. **AOP支持**:`&lt;aop:aspectj-autoproxy/&gt;`开启基于AspectJ的切面代理功能。 3. **数据源配置**:配置MySQL数据库...

    框架ssm整合

    &lt;context:component-scan base-package="com.example.service"/&gt; ``` #### 五、实现业务逻辑 根据需求,需要实现用户数据的CRUD操作。可以通过以下步骤来实现: 1. **实体类**:设计User类,包含用户名、密码等...

Global site tag (gtag.js) - Google Analytics