创建环境Environment 加载环境变量、系统变量、启动参数到环境的PropertySource中
org.springframework.core.env.StandardEnvironment#customizePropertySources
org.springframework.boot.SpringApplication#configurePropertySources
执行SpringApplicationRunListener.environmentPrepared,发布环境准备事件,其中有一个ApplicationListener实现类EnvironmentPostProcessorApplicationListener,它调用EnvironmentPostProcessor.postProcessEnvironment,其中有一个实现类ConfigDataEnvironmentPostProcessor负责将配置文件读取到Env的PropertySource
ConfigDataEnvironmentPostProcessor读取配置文件
- 获取配置文件路径,取当前Env中spring.config.location、spring.config.import、spring.config.additional-location的值。获取配置文件名称,取spring.config.name的值。获取配置文件后缀,取org.springframework.boot.env.PropertySourceLoader#getFileExtensions的值,默认实现有PropertiesPropertySourceLoader和YamlPropertySourceLoader,因此支持yml,yaml,properties、xml。
- 读取配置文件内容,读到PropertySource ,加到Env,org.springframework.boot.env.PropertySourceLoader#load
- 确定profiles, spring.profiles.active+spring.profiles.include+spring.profiles.group中生效的,如果为空,使用spring.profiles.default的值
- 重复1,2步,读取带profile的配置文件,完成
public interface PropertySourceLoader {
String[] getFileExtensions();
List<PropertySource<?>> load(String name, Resource resource) throws IOException;
}
创建Spring容器 org.springframework.boot.ApplicationContextFactory#create,
ConfigurableApplicationContext create(WebApplicationType webApplicationType);
WebApplicationType 根据类路径是否有Servlet和Reactive的类来确定,如果有DispatcherHandler,并且没有DispatcherServlet和org.glassfish.jersey.servlet.ServletContainer,用Reactive,创建AnnotationConfigReactiveWebServerApplicationContext;否则如果有DispatcherServlet,用Servlet,创建AnnotationConfigServletWebServerApplicationContext;如果都没有,为NONE,创建AnnotationConfigApplicationContext
org.springframework.boot.WebApplicationType#deduceFromClasspath
初始化容器 org.springframework.context.ApplicationContextInitializer#initialize
加载容器 加载bean定义,org.springframework.boot.SpringApplication#primarySources和sources声明的类。通过org.springframework.boot.BeanDefinitionLoader#load()加载
Set<Class<?>> primarySources
Set<String> sources
刷新容器 org.springframework.context.ConfigurableApplicationContext#refresh 创建并执行bean工厂的后置处理器,创建bean的后置处理器,创建并启动web容器,创建非懒加载单例bean,同时执行bean的后置处理器
执行ApplicationRunner和CommandLineRunner CommandLineRunner 获取到的是原生的、未解析的main方法参数, ApplicationRunner既能获取原生的,又能获取解析过的main方法参数。 org.springframework.core.env.SimpleCommandLineArgsParser#parse解析
ApplicationRunner和CommandLineRunner在容器而不是spring.factories中定义的,因为此时容器已经刷新完成,执行顺序取决于Order接口和注解
public interface CommandLineRunner {
void run(String... args) throws Exception;
}
public interface ApplicationRunner {
void run(ApplicationArguments args) throws Exception;
}
public interface ApplicationArguments {
String[] getSourceArgs();
Set<String> getOptionNames();
boolean containsOption(String name);
List<String> getOptionValues(String name);
List<String> getNonOptionArgs();
}
springboot生命周期
- 应用开始(ApplicationStartingEvent)
- 环境准备(ApplicationEnvironmentPreparedEvent):创建环境、并且配置好系统变量,操作系统变量,main方法参数之后
- 容器初始化(ApplicationContextInitializedEvent):创建并初始化spring容器之后,ApplicationContextInitializer.initialize
- 应用准备(ApplicationPreparedEvent):加载primarySource和source到容器bean定义后
- 应用启动完成(ApplicationStartedEvent):容器刷新后
- 应用准备完成(ApplicationReadyEvent):CommandLineRunner 和ApplicationRunner执行后
- 应用启动失败(ApplicationFailedEvent):抛异常时,但不包括准备完成的异常
|