1:默认扫描启动类所在路径下所有的bean
2:可以在启动类中添加注解,手动指定扫描路径:
@ComponentScan(basePackages = {"com.xxx.service1.*","com.xxx.service2.**"}) |
补充:SpringBoot 是如何通过 @SpringBootApplication 扫描项目中的 Bean
原因
首先因为 XXXXXXXApplication 附带 @SpringBootApplication 注解,而 @SpringBootApplication 注解的层次如下:
SpringBootApplication ----@Inherited ----@SpringBootConfiguration --------@Configuration ----@EnableAutoConfiguration --------@Inherited --------@AutoConfigurationPackage ------------@Inherited ------------@Import(AutoConfigurationPackages.Registrar.class) --------@Import(AutoConfigurationImportSelector.class) ----@ComponentScan --------@Repeatable(ComponentScans.class) |
|
可以看到 @SpringBootApplication 继承 @ComponentScan 与 @Configuration 用处如下;
扫描方法开始流程:
主要观察黄色方块的方法,是具体扫描路径的地方,具体实现流程如下:
获取 File 目录下的所有以 class 为结尾的文件后,扫描工作就完成了, 剩下的就是 spring 判断是否要管理此类的逻辑(例如:该类是否存在 @Component )