Spring Boot的自动配置原理

创建一个SpringBoot项目,你会发现只有启动类的上方存在一个注解@SpringBootApplication,继续点开该注解你会发现它是一个复合注解,包含@ComponentScan@SpringBootConfiguration@EnableAutoConfiguration等注解,其中@EnableAutoConfiguration注解就是用于开启自动配置的注解。
继续点击@EnableAutoConfiguration注解,你会发现@EnableAutoConfiguration注解中使用了@Import注解,该注解引用了AutoConfigurationImportSelectorAutoConfigurationImportSelector组件提供了getAutoConfigurationEntry(AnnotationMetadata annotationMetadata)的方法用于获取所有的配置类信息,并对无用的配置类进行过滤,源码如下:
在这里插入图片描述
通过源码能看到,getAutoConfigurationEntry()方法中是通过getCandidateConfigurations(annotationMetadata, attributes)来获取所有的配置类,而该方法实际上是调用了SpringFactoriesLoader类中的loadFactoryNamesloadspringFactories方法来读取META-INF/spring.factories文件,从META-INF/spring.factories文件中读取所有配置类信息
题外话:所以点了这么多层,最后干活的是SpringFactoriesLoader中的laodSpringFactories方法。。。。。附源码。
在这里插入图片描述
在这里插入图片描述

我画了一张图,可能看不太清,可以下载之后放大看。
在这里插入图片描述
总结:Spring Boot的自动配置原理,@SpringBootApplication的注解中包含了@EnableAutoConfiguration注解,该注解引入了@Import注解,Spring IOC容器在启动时会解析@Import注解,而@Import注解又引入了AutoConfigurationImportSelector组件,该组件会调用SpringFactoriesLoader中的loadFactorNames方法,而loadFactorNames方法又会调用loadSpringFactories方法来读取META-INF下的spring.factories文件中的配置类信息并返回。AutoConfigurationImportSelector组件在获取到所有的配置类信息之后,会通过@Condition注解过滤无效的配置类。