@ComponentScan注解默认装配标识了@Controller,@Service,@Repository,@Component注解的Bean到IOC容器中,这里我们看一下它的扫描机制。
默认扫描机制
-
程序结构如图,TestController属于启动类子级
-
程序结构如图,TestController属于启动类同级
-
程序结构如图,TestController属于启动类上级
-
结论:默认情况下,@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属于启动类上级
@SpringBootApplication
@ComponentScan("com.coisini")
public class SpringLearnApplication {
public static void main(String[] args) {
SpringApplication.run(SpringLearnApplication.class, args);
excludeFilters 排除扫描
@RestController
@RequestMapping("/testOne")
public class TestOneController {
@Autowired
private TestInter testInter;
@GetMapping(value = "/test")
public String test(){
return testInter.sayHello();
@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);