IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> springboot启动流程 -> 正文阅读

[Java知识库]springboot启动流程

创建环境Environment
加载环境变量、系统变量、启动参数到环境的PropertySource中

org.springframework.core.env.StandardEnvironment#customizePropertySources
org.springframework.boot.SpringApplication#configurePropertySources

执行SpringApplicationRunListener.environmentPrepared,发布环境准备事件,其中有一个ApplicationListener实现类EnvironmentPostProcessorApplicationListener,它调用EnvironmentPostProcessor.postProcessEnvironment,其中有一个实现类ConfigDataEnvironmentPostProcessor负责将配置文件读取到Env的PropertySource

ConfigDataEnvironmentPostProcessor读取配置文件

  1. 获取配置文件路径,取当前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。
  2. 读取配置文件内容,读到PropertySource ,加到Env,org.springframework.boot.env.PropertySourceLoader#load
  3. 确定profiles, spring.profiles.active+spring.profiles.include+spring.profiles.group中生效的,如果为空,使用spring.profiles.default的值
  4. 重复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()加载

//run()参数中的类,是容器配置类
Set<Class<?>> primarySources
//也是容器配置类,后于primarySources加载,并且可以根据类名、包名、spring.xml来加载配置类
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 {
	//原来的main参数
	String[] getSourceArgs();
//带等号的参数名称
	Set<String> getOptionNames();
	
	boolean containsOption(String name);
	//带等号的参数值
	List<String> getOptionValues(String name);
	//不带等号的参数
	List<String> getNonOptionArgs();
}

springboot生命周期

  1. 应用开始(ApplicationStartingEvent)
  2. 环境准备(ApplicationEnvironmentPreparedEvent):创建环境、并且配置好系统变量,操作系统变量,main方法参数之后
  3. 容器初始化(ApplicationContextInitializedEvent):创建并初始化spring容器之后,ApplicationContextInitializer.initialize
  4. 应用准备(ApplicationPreparedEvent):加载primarySource和source到容器bean定义后
  5. 应用启动完成(ApplicationStartedEvent):容器刷新后
  6. 应用准备完成(ApplicationReadyEvent):CommandLineRunner 和ApplicationRunner执行后
  7. 应用启动失败(ApplicationFailedEvent):抛异常时,但不包括准备完成的异常
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-09-13 10:59:34  更:2022-09-13 11:02:42 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:06:39-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码