SpringBoot源码学习(一) 启动流程解析

本文涉及的产品
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
云解析 DNS,旗舰版 1个月
全局流量管理 GTM,标准版 1个月
简介: SpringBoot 源码解析系列

索引


前言

  • java社区里面spring全家桶一直是支柱一般的存在。 其中springboot甚至已经不能以火热来形容了, 甚至已经形成了行业某种意义上的”标准“ 。 所以了解并探究springboot的实现是非常有意义的。
  • 本文基于springboot 2.0.4, spring5 的源代码进行分析。

正文

启动第一个springboot应用

  • 下载测试工程
  • 在IDEA上导入项目 并执行SpringBootDemoApplication.class中的main方法
  • 结果如下


如何启动的

  • 通过代码我们可以看到启动一个springboot应用,非常简单。 只需要一行代码

SpringApplication.run(SpringBootDemoApplication.class, args);


  • debug进去发现其实就是首先new了一个SpringApplication实例,再执行该实例的run方法. 如图


new SpringApplication发生了什么

  • 先看一下源码

public SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources) {

this.resourceLoader = resourceLoader;

Assert.notNull(primarySources, "PrimarySources must not be null");

this.primarySources = new LinkedHashSet<>(Arrays.asList(primarySources));

this.webApplicationType = deduceWebApplicationType();

setInitializers((Collection) getSpringFactoriesInstances(

  ApplicationContextInitializer.class));

setListeners((Collection) getSpringFactoriesInstances(ApplicationListener.class));

this.mainApplicationClass = deduceMainApplicationClass();

}

  • 在new SpringApplication 的时候核心是做了两件事 1. 判断当前spring运行的环境 2. 加载META-INF/spring.factories 并初始化监听器
  • 判断当前spring运行的环境
  • 我们debug到源码里面可以看到, 其实就是根据当前的运行环境有没有某个类来判断的

private WebApplicationType deduceWebApplicationType() {

if (ClassUtils.isPresent(REACTIVE_WEB_ENVIRONMENT_CLASS, null)

  && !ClassUtils.isPresent(MVC_WEB_ENVIRONMENT_CLASS, null)

  && !ClassUtils.isPresent(JERSEY_WEB_ENVIRONMENT_CLASS, null)) {

  return WebApplicationType.REACTIVE;

}

for (String className : WEB_ENVIRONMENT_CLASSES) {

  if (!ClassUtils.isPresent(className, null)) {

  return WebApplicationType.NONE;

  }

}

return WebApplicationType.SERVLET;

}

  • 简单来说,目前springboot支持三种运行环境

 public enum WebApplicationType {


/**

 * The application should not run as a web application and should not start an

 * embedded web server.

        * 简单来说就是没有交互的应用程序

 */

NONE,


/**

 * The application should run as a servlet-based web application and should start an

 * embedded servlet web server.

        * 普通的WEB应用

 */

SERVLET,


/**

 * The application should run as a reactive web application and should start an

 * embedded reactive web server.

        * 响应式的WEB应用 还比较新 提供了很多新特性 spring4刚刚支持

 */

REACTIVE


  }

  • 可以通过加载不同starter来切换环境


  • 加载META-INF/spring.factories
  • 实际上setInitializers, setListeners这两个方法就是扫描spring.factories类并把实例加载到内存中

执行.run后发生了什么

还是先扫一下源码

public ConfigurableApplicationContext run(String... args) {

StopWatch stopWatch = new StopWatch();

stopWatch.start();

ConfigurableApplicationContext context = null;

Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList<>();

configureHeadlessProperty();

SpringApplicationRunListeners listeners = getRunListeners(args);

listeners.starting();

try {

  ApplicationArguments applicationArguments = new DefaultApplicationArguments(

    args);

  ConfigurableEnvironment environment = prepareEnvironment(listeners,

    applicationArguments);

  configureIgnoreBeanInfo(environment);

  Banner printedBanner = printBanner(environment);

  context = createApplicationContext();

  exceptionReporters = getSpringFactoriesInstances(

    SpringBootExceptionReporter.class,

    new Class[] { ConfigurableApplicationContext.class }, context);

  prepareContext(context, environment, listeners, applicationArguments,

    printedBanner);

  refreshContext(context);

  afterRefresh(context, applicationArguments);

  stopWatch.stop();

  if (this.logStartupInfo) {

  new StartupInfoLogger(this.mainApplicationClass)

    .logStarted(getApplicationLog(), stopWatch);

  }

  listeners.started(context);

  callRunners(context, applicationArguments);

}

catch (Throwable ex) {

  handleRunFailure(context, ex, exceptionReporters, listeners);

  throw new IllegalStateException(ex);

}


try {

  listeners.running(context);

}

catch (Throwable ex) {

  handleRunFailure(context, ex, exceptionReporters, null);

  throw new IllegalStateException(ex);

}

return context;

}

其中第一个比较核心是 这两行 获取并启动监听器


 SpringApplicationRunListeners listeners = getRunListeners(args);

 listeners.starting();


  • 首先springboot会首先获取SpringApplicationRunListeners 根据spring.factories的定义 实际上实例化的时候是EventPublishingRunListener这个listener
  • 看一下EventPublishingRunListener的构造函数

public EventPublishingRunListener(SpringApplication application, String[] args) {

this.application = application;

this.args = args;

this.initialMulticaster = new SimpleApplicationEventMulticaster();

for (ApplicationListener<?> listener : application.getListeners()) {

  this.initialMulticaster.addApplicationListener(listener);

}

}

  • 在这里会把所有通过spring.factories实例化的listener添加到SimpleApplicationEventMulticaster中。
  • 第二步执行starting方法, 会发布一个ApplicationStartingEvent
  • 我们继续跟进进去,发现了另外一个核心的方法multicastEvent, 我们查一下 有四个listener注册了ApplicationStartingEvent这个事件
  • 我们随便找了一个LoggingApplicationListener 看一下核心代码

   @Override

   public void onApplicationEvent(ApplicationEvent event) {

       //在springboot启动的时候

       if (event instanceof ApplicationStartedEvent) {

           onApplicationStartedEvent((ApplicationStartedEvent) event);

       }

       //springboot的Environment环境准备完成的时候

       else if (event instanceof ApplicationEnvironmentPreparedEvent) {

           onApplicationEnvironmentPreparedEvent(

                   (ApplicationEnvironmentPreparedEvent) event);

       }

       //在springboot容器的环境设置完成以后

       else if (event instanceof ApplicationPreparedEvent) {

           onApplicationPreparedEvent((ApplicationPreparedEvent) event);

       }

       //容器关闭的时候

       else if (event instanceof ContextClosedEvent && ((ContextClosedEvent) event)

               .getApplicationContext().getParent() == null) {

           onContextClosedEvent();

       }

       //容器启动失败的时候

       else if (event instanceof ApplicationFailedEvent) {

           onApplicationFailedEvent();

       }

   }


  • springboot如何判断一个listener支持什么事件。 debug进去可以发现是通过GenericApplicationListener 这个接口实现的
  • 因为我们的事件类型为ApplicationEvent,所以会执行onApplicationStartedEvent((ApplicationStartedEvent) event);。springBoot会在运行过程中的不同阶段,发送各种事件,来执行对应监听器的对应方法。

小结

  • 根据上文,我们可以简单的做一下小结,在执行了SpringApplication.run(SpringBootDemoApplication.class, args)后发生了什么
  • new了一个SpringApplication实例
  • 判断当前spring运行的环境
  • 加载META-INF/spring.factories 并初始化监听器
  • SpringApplications实例.run
  • 获取并启动监听器
  • 实例化EventPublishingRunListener
  • 把所有通过spring.factories实例化的listener添加到SimpleApplicationEventMulticaster中。
  • 发布ApplicationStartingEvent 执行注册了这个事件的listener
  • 后面还会进行
  • 构造容器环境
  • 创建容器
  • 实例化Failure Analyzers 处理启动的报错信息
  • 准备容器
  • 刷新容器
  • 刷新容器的后扩展接口
  • 后面因为涉及到了spring的核心容器部分,会单独开几章来讲,敬请期待~
目录
相关文章
|
1月前
|
并行计算 Java 数据处理
SpringBoot高级并发实践:自定义线程池与@Async异步调用深度解析
SpringBoot高级并发实践:自定义线程池与@Async异步调用深度解析
163 0
|
1月前
|
人工智能 自然语言处理 前端开发
SpringBoot + 通义千问 + 自定义React组件:支持EventStream数据解析的技术实践
【10月更文挑战第7天】在现代Web开发中,集成多种技术栈以实现复杂的功能需求已成为常态。本文将详细介绍如何使用SpringBoot作为后端框架,结合阿里巴巴的通义千问(一个强大的自然语言处理服务),并通过自定义React组件来支持服务器发送事件(SSE, Server-Sent Events)的EventStream数据解析。这一组合不仅能够实现高效的实时通信,还能利用AI技术提升用户体验。
167 2
|
2月前
|
存储 缓存 Java
在Spring Boot中使用缓存的技术解析
通过利用Spring Boot中的缓存支持,开发者可以轻松地实现高效和可扩展的缓存策略,进而提升应用的性能和用户体验。Spring Boot的声明式缓存抽象和对多种缓存技术的支持,使得集成和使用缓存变得前所未有的简单。无论是在开发新应用还是优化现有应用,合理地使用缓存都是提高性能的有效手段。
39 1
|
1月前
|
前端开发 JavaScript Java
【SpringBoot系列】视图解析器的搭建与开发
【SpringBoot系列】视图解析器的搭建与开发
28 0
|
6月前
|
XML 安全 Java
深入实践springboot实战 蓄势待发 我不是雷锋 我是知识搬运工
springboot,说白了就是一个集合了功能的大类库,包括springMVC,spring,spring data,spring security等等,并且提供了很多和可以和其他常用框架,插件完美整合的接口(只能说是一些常用框架,基本在github上能排上名次的都有完美整合,但如果是自己写的一个框架就无法实现快速整合)。
|
3月前
|
缓存 Java Maven
Java本地高性能缓存实践问题之SpringBoot中引入Caffeine作为缓存库的问题如何解决
Java本地高性能缓存实践问题之SpringBoot中引入Caffeine作为缓存库的问题如何解决
|
6月前
|
Java 数据安全/隐私保护
Neo4j【付诸实践 01】SpringBoot集成报错org.neo4j.driver.exceptions.ClientException:服务器不支持此驱动程序支持的任何协议版本(解决+源代码)
Neo4j【付诸实践 01】SpringBoot集成报错org.neo4j.driver.exceptions.ClientException:服务器不支持此驱动程序支持的任何协议版本(解决+源代码)
326 1
|
2月前
|
Java 应用服务中间件 开发者
深入探索并实践Spring Boot框架
深入探索并实践Spring Boot框架
45 2
|
3月前
|
缓存 Java Spring
Java本地高性能缓存实践问题之在Spring Boot中启用缓存支持的问题如何解决
Java本地高性能缓存实践问题之在Spring Boot中启用缓存支持的问题如何解决
|
6月前
|
JavaScript Java 测试技术
返家乡”高校暑期社会实践微信小程序+springboot+vue.js附带文章和源代码设计说明文档ppt
返家乡”高校暑期社会实践微信小程序+springboot+vue.js附带文章和源代码设计说明文档ppt
38 0

推荐镜像

更多
下一篇
无影云桌面