spring02-组件注册-@ComponentScan-自动扫描组件&指定扫描规则
上一篇我们讲到,讲@Bean注解标在某个方法上,那么ioc容器启动的时候就会将方法返回值放到ioc容器中
在开发中,实际上包扫描用的比较多,接下来我们会介绍两种方式一种是基于xml,一种是基于注解。
咱们先来xml的形式进行包扫描
这里我用的是spring suit tool 版本的eclipse,专门开发spring项目的

勾选上后会有自动提示的,包括创建的时候


这次就有提示了

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<!-- class = "",输入person alt+/ 会提示 -->
<bean id = "person" class="com.liuyuan.bean.Person"></bean>
<bean id = "person2" class ="com.liuyuan.bean.Person">
<!-- 这里的name="",也可以使用快捷键alt+/ -->
<property name="age" value="18"></property>
<property name="name" value = "zhangsan"></property>
</bean>
<!-- 包扫描,只要标注了@Controller,@Service,@Component,@Repository就会被扫描,加进ioc容器 -->
<context:component-scan base-package="com.liuyuan"></context:component-scan>
</beans>
对于注解形式

加了@ComponentScan(value= "com.liuyuan")
package com.liuyuan.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import com.liuyuan.bean.Person;
//配置类等同于之前的配置文件
@Configuration //告诉spring这是一个配置类
@ComponentScan(value= "com.liuyuan")
public class MainConfig {
//给容器注册一个Bean,类型为返回值得类型,
///id默认是以方法名作为id
@Bean("AAA")
public Person person() {
return new Person("lisi",20);
}
}
建了com.liuyuan.dao,com.liuyuan.service,com.liuyuan.controller 这些包,里面对应的建了BookDao,BookService,BookControler,在这三个类上面加了注解,@Repository,@Service,@Controller
注解,完了建立一个测试类
package com.liuyuan.test;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import com.liuyuan.config.MainConfig;
public class IOCTest {
@SuppressWarnings("resource")
@Test
public void test01() {
AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfig.class);
String [] definitionNames = applicationContext.getBeanDefinitionNames();
for (String name : definitionNames) {
System.out.println(name);
}
}
}

这些Bean都是类名第一位小写
那个mainConfig为什么有呢?因为@Configration注解,可以点进去看一下

接下来我们定一些包扫描规则
比如排除一部分Bean
@ComponentScan(value= "com.liuyuan",excludeFilters = {
@Filter(type=FilterType.ANNOTATION,classes={Controller.class}),
})
这个 filter实际上是一个数组,可以写多个,并且可以指定过滤的形式
package com.liuyuan.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ComponentScan.Filter;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.FilterType;
import org.springframework.stereotype.Controller;
import com.liuyuan.bean.Person;
import com.liuyuan.service.BookService;
//配置类等同于之前的配置文件
@Configuration //告诉spring这是一个配置类
@ComponentScan(value= "com.liuyuan",excludeFilters = {
@Filter(type=FilterType.ANNOTATION,classes={Controller.class}),
})
public class MainConfig {
//给容器注册一个Bean,类型为返回值得类型,
///id默认是以方法名作为id
@Bean("AAA")
public Person person() {
return new Person("lisi",20);
}
}
再次启动测试类,发现bookController真的被排除了

接下来再来一个包含某些进行扫描的定义规则
还记得在xml里面配置的时候需要禁用掉默认的过滤规则
加个use-default-filters="true"
如下
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<!-- class = "",输入person alt+/ 会提示 -->
<bean id = "person" class="com.liuyuan.bean.Person"></bean>
<bean id = "person2" class ="com.liuyuan.bean.Person">
<!-- 这里的name="",也可以使用快捷键alt+/ -->
<property name="age" value="18"></property>
<property name="name" value = "zhangsan"></property>
</bean>
<!-- 包扫描,只要标注了@Controller,@Service,@Component,@Repository就会被扫描,加进ioc容器use-default-filters="false"
只包含某些需要禁用掉默认的过滤规则,只包含啊才能生效-->
<context:component-scan base-package="com.liuyuan" use-default-filters="false"></context:component-scan>
</beans>
对于注解形式的
package com.liuyuan.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ComponentScan.Filter;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.FilterType;
import org.springframework.stereotype.Controller;
import com.liuyuan.bean.Person;
import com.liuyuan.service.BookService;
//配置类等同于之前的配置文件
@Configuration //告诉spring这是一个配置类
@ComponentScan(value= "com.liuyuan",/*excludeFilters = {
@Filter(type=FilterType.ANNOTATION,classes={Controller.class})*/
includeFilters= {@Filter(type=FilterType.ANNOTATION,classes= {Controller.class})
},useDefaultFilters=false)
public class MainConfig {
//给容器注册一个Bean,类型为返回值得类型,
///id默认是以方法名作为id
@Bean("AAA")
public Person person() {
return new Person("lisi",20);
}
}

对于mainCofig已经看到@Component注解,Bean也看下吧
查看确实是没有,为什么会被spring 的ioc管理呢?
留个疑问吧
来源:淮安网站优化
spring02-组件注册-@ComponentScan-自动扫描组件&指定扫描规则的更多相关文章
- 3、组件注册-@ComponentScan-自动扫描组件&指定扫描规则
3.组件注册-@ComponentScan-自动扫描组件&指定扫描规则 3.1 xml方式 benas.xml 导入context命名空间 <?xml version="1.0 ...
- 【Spring注解驱动开发】组件注册-@ComponentScan-自动扫描组件&指定扫描规则
写在前面 在实际项目中,我们更多的是使用Spring的包扫描功能对项目中的包进行扫描,凡是在指定的包或子包中的类上标注了@Repository.@Service.@Controller.@Compon ...
- 5、组件注册-@Scope-设置组件作用域
5.组件注册-@Scope-设置组件作用域 IOC容器默认都是单实例的 /** * * {@link ConfigurableBeanFactory#SCOPE_SINGLETON SCOPE_SIN ...
- 二、Spring中的@ComponentScan自动扫描组件
在以往采用xml配置的方式中,我们通常需要配置<context:component-scan>标签 比如这样: <!-- 包扫描.只要标注了@Controller.@Service. ...
- spring注解扫描组件注册
最近对单点系统进行微服务拆分,被各个springboot的组件注册搞得云里雾里的.(有的是通过springboot的自动配置进IOC容器的,有的是自己添加构造方法添加进IOC容器.)决定抽时间将spr ...
- Spring注解开发系列Ⅰ--- 组件注册(上)
传统的Spring做法是使用.xml文件来对bean进行注入或者是配置aop.事物,这么做有两个缺点:1.如果所有的内容都配置在.xml文件中,那么.xml文件将会十分庞大:如果按需求分开.xml文件 ...
- Spring Boot 自动扫描组件
使用@ComponentScan自动扫描组件 案例准备 1.创建一个配置类,在配置类上添加 @ComponentScan 注解.该注解默认会扫描该类所在的包下所有的配置类,相当于之前的 <con ...
- Spring注解驱动——组件注册系列
1.@Configuration 从Spring3.0,@Configuration用于定义配置类,可替换xml配置文件,被注解的类内部包含有一个或多个被@Bean注解的方法,这些方法将会被Annot ...
- 【spring 注解驱动开发】spring组件注册
尚学堂spring 注解驱动开发学习笔记之 - 组件注册 组件注册 1.@Configuration&@Bean给容器中注册组件 2.@ComponentScan-自动扫描组件&指定扫 ...
随机推荐
- 八、SAP中使用MOVE来赋值
一.使用MOVE和使用等号的效果是等同的,代码如下: 二.效果如下:
- UIWindow的那些事
UIView是视图的基类,UIViewController是视图控制器的基类,UIResponder是表示一个可以在屏幕上响应触摸事件的对象: 一.UIWindow是一种特殊的UIView,通常在一个 ...
- 碎碎念(DP)
链接:https://ac.nowcoder.com/acm/contest/3006/F来源:牛客网 题目描述 在ACM比赛里,除了CE以外都是有效的提交.每一个提交都会有其评测的结果,或是AC,或 ...
- UVALive 6763 / CSU 1446
今天比赛的时候拿到的第一道题,其实挺简单的,求两等差序列中相同元素的个数,我想了一下就觉得,只要找到了第一个相等的点,然后后面求最大公约数就可以直接得到结果了 网上叫什么拓展欧几里得,我反正是按照我们 ...
- 吴裕雄--天生自然 JAVASCRIPT开发学习
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...
- python刷LeetCode:26. 删除排序数组中的重复项
难度等级:简单 题目描述: 给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度. 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外 ...
- java基础二 分支循环
分支循环: if... if...else... if...else if... if...else if...else... switch...case...defau ...
- 初学者学习JavaScript的实用技巧!
Javascript是一种高级编程语言,通过解释执行.它是一门动态类型,面向对象(基于原型)的直译语言.它已经由欧洲电脑制造商协会通过ECMAScript实现语言标准化,它被世界上的绝大多数网站所使用 ...
- 吴裕雄--天生自然 JAVASCRIPT开发学习: this 关键字
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...
- vi粘贴代码后格式混乱的问题
最近在远程终端使用vi发现从其他地方复制代码的后,粘贴到vi里面出现格式变乱的问题. 主要是因为终端通常无法区分输入是来自用户输入还是来自粘贴,所以终端也不能通知 vim 输入来自何处.在 vim 里 ...