自动配置
pom.xml
- spring-boot-dependencies :核心依赖在父工程中
- 我们在写或者引入一些Spring Boot依赖的时候,不需要指定版本,就因为有这些版本仓库
启动器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
- 启动器:SpringBoot的启动场景
比如我们要引入web,直接添加 -web
他就会帮我们自动导入web环境所有的依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
- SpringBoot会将所有的功能场景,都变成一个个的启动器
- 我们要使用什么功能,就只需要找到对应的启动器就可以了
start
主程序
//@SpringBootApplication 标注这个类是一个SpringBoot应用(不写直接崩)
@SpringBootApplication
public class Demo1Application {
//将SpringBoot应用启动
public static void main(String[] args) {
SpringApplication.run(Demo1Application.class, args);
}
}
注解
@SpringBootConfiguration : SpringBoot的配置
@Configuration : Spring配置类
@Component : 也是一个Spring的组件
@EnableAutoConfiguration : 自动配置
@AutoConfigurationPackage : 自动配置包
@Import({Registrar.class}) : 自动配置 `包注册`
@Import({AutoConfigurationImportSelector.class}) : 自动配置导入选择
//获取所有的配置
List<String> configurations = this.getCandidateConfigurations(annotationMetadata, attributes);
获取候选的配置
protected List<String> getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) {
List<String> configurations = SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader());
Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you are using a custom packaging, make sure that file is correct.");
return configurations;
}
META-INF/spring.factories :自动配置的核心文件