当前位置:   article > 正文

Spring Boot启动流程_springboot启动流程

springboot启动流程

1、Springboot 启动流程

  1. 创建一个StopWatch实例,用来记录SpringBoot的启动时间。
  2. 通过SpringFactoriesLoader加载listeners:比如EventPublishingRunListener。
  3. 发布SprintBoot开始启动事件(EventPublishingRunListener#starting())。
  4. 创建和配置environment(environmentPrepared())。
  5. 打印SpringBoot的banner和版本。
  6. 创建对应的ApplicationContext:Web类型,Reactive类型,普通的类型(非Web)
  7. 刷新上下文 prepareContext:自动装配和启动 tomcat就是在这个方法里面完成
    1. 准备ApplicationContext,Initializers设置到ApplicationContext(contextPrepared())。
    2. 打印启动日志,打印profile信息(如dev, test, prod)。
    3. 最终会调用到AbstractApplicationContext#refresh方法,实际上就是Spring IOC容器的创建过程,并且会进行自动装配的操作,以及发布ApplicationContext已经refresh事件,标志着ApplicationContext初始化完成(contextLoaded())
  8. afterRefresh hook方法。
  9. stopWatch停止计时,日志打印总共启动的时间。
  10. 发布SpringBoot程序已启动事件(started())。
  11. 调用ApplicationRunner和CommandLineRunner。
  12. 最后发布就绪事件ApplicationReadyEvent,标志着SpringBoot可以处理就收的请求了(running())。

  1. public ConfigurableApplicationContext run(String... args) {
  2. // 创建一个StopWatch实例,用来记录SpringBoot的启动时间
  3. StopWatch stopWatch = new StopWatch();
  4. stopWatch.start();
  5. ConfigurableApplicationContext context = null;
  6. Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList<>();
  7. configureHeadlessProperty();
  8. // 通过SpringFactoriesLoader加载listeners:比如EventPublishingRunListener
  9. SpringApplicationRunListeners listeners = getRunListeners(args);
  10. // 发布SprintBoot启动事件:ApplicationStartingEvent
  11. listeners.starting();
  12. try {
  13. ApplicationArguments applicationArguments = new DefaultApplicationArguments(args);
  14. // 创建和配置environment,发布事件:SpringApplicationRunListeners#environmentPrepared
  15. ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments);
  16. configureIgnoreBeanInfo(environment);
  17. // 打印SpringBoot的banner和版本
  18. Banner printedBanner = printBanner(environment);
  19. // 创建对应的ApplicationContext:Web类型,Reactive类型,普通的类型(非Web)
  20. context = createApplicationContext();
  21. exceptionReporters = getSpringFactoriesInstances(SpringBootExceptionReporter.class,
  22. new Class[] { ConfigurableApplicationContext.class }, context);
  23. // 准备ApplicationContext,Initializers设置到ApplicationContext后发布事件:ApplicationContextInitializedEvent
  24. // 打印启动日志,打印profile信息(如dev, test, prod)
  25. // 调用EventPublishingRunListener发布ApplicationContext加载完毕事件:ApplicationPreparedEvent
  26. prepareContext(context, environment, listeners, applicationArguments, printedBanner);
  27. // 最终会调用到AbstractApplicationContext#refresh方法,实际上就是Spring IOC容器的创建过程,并且会进行自动装配的操作
  28. // 以及发布ApplicationContext已经refresh事件,标志着ApplicationContext初始化完成
  29. refreshContext(context);
  30. // hook方法
  31. afterRefresh(context, applicationArguments);
  32. // stopWatch停止计时,日志打印总共启动的时间
  33. stopWatch.stop();
  34. if (this.logStartupInfo) {
  35. new StartupInfoLogger(this.mainApplicationClass).logStarted(getApplicationLog(), stopWatch);
  36. }
  37. // 发布SpringBoot程序已启动事件ApplicationStartedEvent
  38. listeners.started(context);
  39. // 调用ApplicationRunner和CommandLineRunner
  40. callRunners(context, applicationArguments);
  41. }
  42. catch (Throwable ex) {
  43. handleRunFailure(context, ex, exceptionReporters, listeners);
  44. throw new IllegalStateException(ex);
  45. }
  46. try {
  47. // 最后发布就绪事件ApplicationReadyEvent,标志着SpringBoot可以处理就收的请求了
  48. listeners.running(context);
  49. }
  50. catch (Throwable ex) {
  51. handleRunFailure(context, ex, exceptionReporters, null);
  52. throw new IllegalStateException(ex);
  53. }
  54. return context;
  55. }

2、Springboot IOC容器初始化过程

Springboot 启动过程,其核心就是IOC容器初始化过程,所以可以把上诉过程简化为

  • 第一步,创建IOC容器;

    IOC容器是由类AnnotationConfigServletWebServerApplicationContext初始化的一个实例,其中包含了bean工厂、类加载器、bean定义信息和环境变量等主要信息。

    通过AnnotationConfigServletWebServerApplicationContext的初始化,IOC容器初始化了一些属性,设置了一些特定的bean定义信息。其主要的作用,还是为后续的IOC容器创建Bean做准备。

  • 第二步,准备IOC容器相关信息

    在项目启动后,进行一系列的初始化。包括SpringApplication实例准备,listener监听器准备,environment环境准备。

  • 第三步,刷新IOC容器,也就是我们通常说的bean的初始化过程

    加载当前主启动类下的所有类文件到IOC容器:经过ConfigurationClassParser类中的parse方法调用AnnotatedBeanDefinition类型的parse方法,我们完成了对当前项目工程下所有类,注册到IOC容器中的操作。

    加入Spring自带的框架类到IOC容器(自动装配):在ConfigurationClassParser类中的执行方法为:this.deferredImportSelectorHandler.process(); 这里用到Spring Factories 机制,见Springboot自动配置

    关于bean信息注册的方法,基本都在ConfigurationClassParser这个类中,processConfigBeanDefinitions实现bean信息注册的入口方法在ConfigurationClassParser的parse方法中:

  1. public void parse(Set<BeanDefinitionHolder> configCandidates) {
  2. //主启动类bean信息集合
  3. Iterator var2 = configCandidates.iterator();
  4. while(var2.hasNext()) {
  5. BeanDefinitionHolder holder = (BeanDefinitionHolder)var2.next();
  6. BeanDefinition bd = holder.getBeanDefinition();
  7. try {
  8. if (bd instanceof AnnotatedBeanDefinition) {
  9. //注册项目工程类信息
  10. this.parse(((AnnotatedBeanDefinition)bd).getMetadata(), holder.getBeanName());
  11. .......
  12. }
  13. //注册Spring提供默认类信息
  14. this.deferredImportSelectorHandler.process();
  15. }

然后,就可以完成bean的大规模实例化

  • 第四步,完成刷新IOC容器后处理

    这是一个抽象方法,且没有继承类。

  • 第五步,结束Springboot启动流程

    记录结束时间;

    发布SpringBoot程序已启动事件;

    执行容器中所有的ApplicationRunner和CommandLineRunner类型的run方法

  1. public ConfigurableApplicationContext run(String... args) {
  2. ......
  3. ConfigurableApplicationContext context = null;
  4. ......
  5. //1创建容器
  6. context = this.createApplicationContext();
  7. exceptionReporters = this.getSpringFactoriesInstances(SpringBootExceptionReporter.class, new Class[]{ConfigurableApplicationContext.class}, context);
  8. //2准备容器相关信息
  9. this.prepareContext(context, environment, listeners, applicationArguments, printedBanner);
  10. //3刷新容器,也就是通常我们说的bean的初始化
  11. this.refreshContext(context);
  12. //4完成初始化后处理
  13. this.afterRefresh(context, applicationArguments);
  14. ......
  15. }

3、自定义应用

3.1 自定义初始化器

自定义初始化器首先要实现 ApplicationContextInitializer 接口

执行自定义初始化器的方式有三种

  • 方式一:通过通过SpringApplication对象调用addInitializers(new 自定义初始化器)
  1. @SpringBootApplication
  2. public class NettyTestApplication {
  3. public static void main(String[] args) {
  4. SpringApplication springApplication = new SpringApplication(NettyTestApplication.class);
  5. springApplication.addInitializers(new SecondInitializer());
  6. springApplication.run(args);
  7. }
  8. }
  9. @Order(2)
  10. public class SecondInitializer implements ApplicationContextInitializer {
  11. @Override
  12. public void initialize(ConfigurableApplicationContext configurableApplicationContext) {
  13. ConfigurableEnvironment environment = configurableApplicationContext.getEnvironment();
  14. Map<String, Object> map = new HashMap<>();
  15. map.put("key2","value2");
  16. MapPropertySource firstInitializer = new MapPropertySource("secondInitializer", map);
  17. environment.getPropertySources().addLast(firstInitializer);
  18. System.out.println("run second initializer");
  19. }
  20. }
  • 方式二:通过META-INF/spring.factories中指定
  • org.springframework.context.ApplicationContextInitializer=自定义初始化器
  1. # 在 resources 文件夹下新建 META-INF 文件夹,META-INF 文件夹下新建 spring.factories 配置文件,添加内容如下:
  2. org.springframework.context.ApplicationContextInitializer=com.xxx.FirstInitializer
  3. // order 注解用于排序
  4. @Order(1)
  5. public class FirstInitializer implements ApplicationContextInitializer {
  6. @Override
  7. public void initialize(ConfigurableApplicationContext configurableApplicationContext) {
  8. ConfigurableEnvironment environment = configurableApplicationContext.getEnvironment();
  9. Map<String, Object> map = new HashMap<>();
  10. map.put("key1","value1");
  11. MapPropertySource firstInitializer = new MapPropertySource("firstInitializer", map);
  12. environment.getPropertySources().addLast(firstInitializer);
  13. System.out.println("run first initializer");
  14. }
  15. }
  • 方式三:通过application.properties中指定 context.initializer.classes=自定义初始化器
  • 利用 ApplicationContextInitializer 接口的实现类 DelegatingApplicationContextInitializer
  1. 在 springboot 的默认配置文件 application.properties 中添加
  2. context.initializer.classes=com.xxx.ThirdInitializer
  3. @Order(3)
  4. public class ThirdInitializer implements ApplicationContextInitializer {
  5. @Override
  6. public void initialize(ConfigurableApplicationContext configurableApplicationContext) {
  7. ConfigurableEnvironment environment = configurableApplicationContext.getEnvironment();
  8. Map<String, Object> map = new HashMap<>();
  9. map.put("key3","value3");
  10. MapPropertySource firstInitializer = new MapPropertySource("thirdInitializer", map);
  11. environment.getPropertySources().addLast(firstInitializer);
  12. System.out.println("run third initializer");
  13. }
  14. }
  15. @SpringBootApplication
  16. public class NettyTestApplication {
  17. public static void main(String[] args) {
  18. SpringApplication.run(NettyTestApplication.class, args);
  19. }
  20. }

3.2、自定义监听器

springboot进行事件监听有四种方式:

1.手工向ApplicationContext中添加监听器

  1. public class MyListener1 implements ApplicationListener<MyEvent>{
  2. Logger logger = Logger.getLogger(MyListener1.class);
  3. public void onApplicationEvent(MyEvent event)
  4. {
  5. logger.info(String.format("%s监听到事件源:%s.", MyListener1.class.getName(), event.getSource()));
  6. }
  7. }
  8. @SpringBootApplication
  9. public class LisenterApplication
  10. {
  11. public static void main(String[] args)
  12. {
  13. ConfigurableApplicationContext context = SpringApplication.run(LisenterApplication.class, args);
  14. //装载监听
  15. context.addApplicationListener(new MyListener1());
  16. }
  17. }

2.使用@Component注解将监听器装载入spring容器

  1. @Component
  2. public class MyListener2 implements ApplicationListener<MyEvent>
  3. {
  4. Logger logger = Logger.getLogger(MyListener2.class);
  5. public void onApplicationEvent(MyEvent event)
  6. {
  7. logger.info(String.format("%s监听到事件源:%s.", MyListener2.class.getName(), event.getSource()));
  8. }
  9. }

3.在application.properties中配置监听器

  1. 在application.properties中配置监听
  2. context.listener.classes=com.listener.MyListener3
  3. public class MyListener3 implements ApplicationListener<MyEvent>
  4. {
  5. Logger logger = Logger.getLogger(MyListener3.class);
  6. public void onApplicationEvent(MyEvent event)
  7. {
  8. logger.info(String.format("%s监听到事件源:%s.", MyListener3.class.getName(), event.getSource()));
  9. }
  10. }

4.通过@EventListener注解实现事件监听

  1. @Component
  2. public class MyListener4
  3. {
  4. Logger logger = Logger.getLogger(MyListener4.class);
  5. @EventListener
  6. public void listener(MyEvent event)
  7. {
  8. logger.info(String.format("%s监听到事件源:%s.", MyListener4.class.getName(), event.getSource()));
  9. }
  10. }

3.3、自定义 banner信息

在启动 Spring Boot 项目时会在控制台打印如下内容(logo 和版本信息):

  1. . ____ _ __ _ _
  2. /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
  3. ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  4. \\/ ___)| |_)| | | | | || (_| | ) ) ) )
  5. ' |____| .__|_| |_|_| |_\__, | / / / /
  6. =========|_|==============|___/=/_/_/_/
  7. :: Spring Boot :: (v2.6.6)

如果我们想要使用自己的banner,我们可以直接替换,在项目的 resources 资源目录下创建 banner.txt 文件,banner.txt 内容如下

  1. // _ooOoo_ //
  2. // o8888888o //
  3. // 88" . "88 //
  4. // (| ^_^ |) //
  5. // O\ = /O //
  6. // ____/`---'\____ //
  7. // .' \\| |// `. //
  8. // / \\||| : |||// \ //
  9. // / _||||| -:- |||||- \ //
  10. // | | \\\ - /// | | //
  11. // | \_| ''\---/'' | | //
  12. // \ .-\__ `-` ___/-. / //
  13. // ___`. .' /--.--\ `. . ___ //
  14. // ."" '< `.___\_<|>_/___.' >'"". //
  15. // | | : `- \`.;`\ _ /`;.`/ - ` : | | //
  16. // \ \ `-. \_ __\ /__ _/ .-` / / //
  17. // ========`-.____`-.___\_____/___.-`____.-'======== //
  18. // `=---=' //
  19. // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //
  20. // 佛祖保佑 永无BUG 永不修改 //
  21. :: Spring Boot :: (${spring-boot.version})

3.4、自定义启动异常堆栈信息打印方式

SpringBoot在项目启动时如果遇到异常并不能友好的打印出具体的堆栈错误信息,我们只能查看到简单的错误消息,以致于并不能及时解决发生的问题,针对这个问题SpringBoot提供了故障分析仪的概念(failure-analyzer),内部根据不同类型的异常提供了一些实现。

实现方法是,在springboot启动的核心方法run中会加载所有的SpringBootExceptionReporter,SpringBootExceptionReporter是一个回调接口,用于支持对SpringApplication启动错误的自定义报告。里面就一个报告启动失败的方法。

其实现类:org.springframework.boot.diagnostics.FailureAnalyzers

用于触发从spring.factories加载的FailureAnalyzer和FailureAnalysisReporter实例。

SpringBoot内部通过实现AbstractFailureAnalyzer抽象类定义了一系列的针对性异常类型的启动分析,如下图所示:

指定异常分析

SpringBoot内部提供的启动异常分析都是指定具体的异常类型实现的,最常见的一个错误就是端口号被占用(PortInUseException),虽然SpringBoot内部提供一个这个异常的启动分析,我们也是可以进行替换这一异常分析的,我们只需要创建PortInUseException异常的AbstractFailureAnalyzer,并且实现类注册给SpringBoot即可,实现自定义如下所示:

  1. /**
  2. * 端口号被占用{@link PortInUseException}异常启动分析
  3. */
  4. public class PortInUseFailureAnalyzer extends AbstractFailureAnalyzer<PortInUseException> {
  5. /**
  6. * logger instance
  7. */
  8. static Logger logger = LoggerFactory.getLogger(PortInUseFailureAnalyzer.class);
  9. @Override
  10. protected FailureAnalysis analyze(Throwable rootFailure, PortInUseException cause) {
  11. logger.error("端口被占用。", cause);
  12. return new FailureAnalysis("端口号:" + cause.getPort() + "被占用", "PortInUseException", rootFailure);
  13. }
  14. }

注册启动异常分析

在上面我们只是编写了指定异常启动分析,我们接下来需要让它生效,这个生效方式比较特殊,类似于自定义SpringBoot Starter AutoConfiguration的形式,我们需要在META-INF/spring.factories文件内进行定义,如下所示:

org.springframework.boot.diagnostics.FailureAnalyzer=\ org.minbox.chapter.springboot.failure.analyzer.PortInUseFailureAnalyzer

项目启动遇到的异常顺序不能确定,很可能在Spring IOC并未执行初始化之前就出现了异常,我们不能通过@Component注解的形式使其生效,所以SpringBoot提供了通过spring.factories配置文件的方式定义。

3.5、自定义初始化任务 Runner

在项目启动的时候需要做一些初始化的操作,比如初始化线程池,提前加载好加密证书等。可以通过实现Runner接口完成以上工作。

1.实现 ApplicationRunner 接口

  1. @Component
  2. public class VipSoftServerRunner implements ApplicationRunner{
  3. private static final Logger logger = LoggerFactory.getLogger(JmxhphServerRunner.class);
  4. @Override
  5. public void run(ApplicationArguments args) throws Exception {
  6. System.out.println("项目启动,执行 CommandLineRunner 实现类的方法");
  7. }
  8. }

2.实现 CommandLineRunner 接口

  1. @Component
  2. public class VipSoftServerRunner implements CommandLineRunner {
  3. private static final Logger logger = LoggerFactory.getLogger(JmxhphServerRunner.class);
  4. @Override
  5. public void run(String... args) throws Exception {
  6. System.out.println("项目启动,执行 CommandLineRunner 实现类的方法");
  7. }
  8. }

两者只是参数上的区别而已。

  • ApplicaitonRunner的run方法接收一个ApplicationArguments类型的参数,ApplicationArguments会对spring-boot程序的启动参数进行解析和分类,把[--{operation-name}={operation-value}]解析操作参数,其它情况被分类为非操作参数。
  • 使用选项参数必须遵循精确的语法,也就是说,选项必须以”–“为前缀,并且可以指定值,也可以不指定值;如果指定了一个值,则名称和值必须用”=“号分割,且不带空格,值可以是空字符串。

    选项参数的有效示例:

  1. --foo
  2. --foo=
  3. --foo=""
  4. --foo=bar
  5. --foo="bar then baz"
  6. --foo=bar,baz,biz
  7. java -jar test.jar --server.port=8080
  • CommandLineRunner的run方法接收的是一个String类型的可变参数,它的值就是我们main函数接收到的命令行参数。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/576253
推荐阅读
相关标签
  

闽ICP备14008679号