springboot自动装配大概原理
自动装配:
pom.xml
- spring-boot-dependence:核心都依赖在父类工程中!
- 我们在写入或者引入springboot依赖的时候,不需要指定版,因为有这些仓库的版本
启动器:------spring boot的启动场景
- 比如spring-boot-starter-web,他就会帮我们导入web环境苏需要的依赖。
- springboot会将所有的功能场景,都变成一个个启动器。
- 我们使用什么功能,只需要找到对应的启动器(starter)就可以了
主程序:
//springbootApplication:标注这个类是一个springboot的应用,启动类下的所有资源被导入
@SpringBootApplication
public class HuangApplication {
public static void main(String[] args) {
SpringApplication.run(HuangApplication.class, args);
}
}
注解:
@SpringBootConfiguration:springboot的配置
@Configuration: sring配置类
@@Component:说明这也是一个spring的组件
@@EnableAutoConfiguration: 自动配置
@AutoConfigurationPackage:自动配置
@Import(AutoConfigurationPackages.Registrar.class):导入选择器
@Import({AutoConfigurationImportSelector.class}):自动导入选择
//获取所有的配置
List<String>configurations=this.getCandidateConfigurations(annotationMetadata, attributes);
获取候选的配置:
protectedList<String> getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) {
List<String> configurations = new ArrayList(SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader()));
ImportCandidates.load(AutoConfiguration.class, this.getBeanClassLoader()).forEach(configurations::add);
Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories nor in META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports. If you are using a custom packaging, make sure that file is correct.");
return configurations;
自动配置的核心:
META-INF/spring.factories
Properties properties = PropertiessloaderUtils.loadProperties(resource);
所有资源加载到配置类中!
结论:
springboot所有的自动配置都是在启动的时候扫描并加载:spring.factoriess所有的自动配置类都在这里面,但不一定全部启动,要判断条件是否成立,只要导入对应的start,就有对应的启动器了,有了启动器,我们的自动装配就会生效,然后配置就会成功。
大概步骤:
1.
spring boot在启动的时候,从路径下/META-INF/spring.factories获取指定的值。
2.
将这些自动配置的类导入容器,自动配置就会生效,进行自动配置。
3.
以前我们需要自动配置的东西,现在都在springboot帮我们做。
4.
整合javaEE,解决方案和自动装配的东西都在spring-boot-autofigure- 2.7.11.RELEASE.JAR这个包下面
5.
他会把所有需要导入的组件,以类的方式返回,这些组件就会被添加到容器。
6.
容器中也会存在非常多的xxxAutoConfiguration的文件(@bean),就是这些类给容器中导入了这个场景需要的所有组件,并自动配置。
代码表示(自动配置原理)
热门相关:超武穿梭 霸皇纪 大神你人设崩了 刺客之王 豪门闪婚:帝少的神秘冷妻