Spring - @ComponentScan包扫描机制

目录

  • 前言
  • 默认扫描机制
  • @ComponentScan的使用
    • @ComponentScan常用参数
    • @ComponentScan指定扫描
    • excludeFilters 排除扫描

前言

@ComponentScan注解默认装配标识了@Controller,@Service,@Repository,@Component注解的Bean到IOC容器中,这里我们看一下它的扫描机制。


默认扫描机制

  • 程序结构如图,TestController属于启动类子级
    Spring - @ComponentScan包扫描机制_第1张图片

  • 访问正常
    Spring - @ComponentScan包扫描机制_第2张图片

  • 程序结构如图,TestController属于启动类同级
    Spring - @ComponentScan包扫描机制_第3张图片

  • 访问正常
    Spring - @ComponentScan包扫描机制_第4张图片

  • 程序结构如图,TestController属于启动类上级
    Spring - @ComponentScan包扫描机制_第5张图片

  • 访问异常
    Spring - @ComponentScan包扫描机制_第6张图片

  • 结论:默认情况下,@ComponentScan扫描入口类同级及其子级包下的所有文件。


@ComponentScan的使用

  • @ComponentScan 的作用就是根据定义的扫描路径,把符合扫描规则的类装配到spring容器中。

@ComponentScan常用参数

参数 作用
basePackages与value 用于指定包的路径,进行扫描
basePackageClasses 用于指定某个类的包的路径进行扫描
nameGenerator bean的名称的生成器
useDefaultFilters 是否开启对@Component,@Repository,@Service,@Controller的类进行检测
includeFilters 包含的过滤条件 FilterType.ANNOTATION:按照注解过滤 FilterType.ASSIGNABLE_TYPE:按照给定的类型 FilterType.ASPECTJ:使用ASPECTJ表达式 FilterType.REGEX:正则 FilterType.CUSTOM:自定义规则
excludeFilters 排除的过滤条件,用法和includeFilters一样

@ComponentScan指定扫描

  • 程序结构如图,TestController属于启动类上级
    Spring - @ComponentScan包扫描机制_第7张图片
  • 指定扫描路径
@SpringBootApplication
@ComponentScan("com.coisini")
public class SpringLearnApplication {
    public static void main(String[] args) {
        SpringApplication.run(SpringLearnApplication.class, args);
    }
}
  • 访问正常
    Spring - @ComponentScan包扫描机制_第8张图片

excludeFilters 排除扫描

  • 新建测试TestOneController
@RestController
@RequestMapping("/testOne")
public class TestOneController {

    @Autowired
    private TestInter testInter;

    @GetMapping(value = "/test")
    public String test(){
        return testInter.sayHello();
    }

}
  • 忽略扫描TestOneController
@SpringBootApplication
@ComponentScan(value = "com.coisini",
                excludeFilters = {@ComponentScan.Filter(
                        type = FilterType.ASSIGNABLE_TYPE,
                        classes = TestOneController.class)})
public class SpringLearnApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringLearnApplication.class, args);
    }

}
  • TestController访问正常
    Spring - @ComponentScan包扫描机制_第9张图片
  • TestOneController访问异常
    Spring - @ComponentScan包扫描机制_第10张图片


- End -
- 个人学习笔记 -
- 仅供参考 -

你可能感兴趣的:(Spring,Spring)