面试官:Spring Boot 的启动流程你了解吗?我:。。
ztj100 2024-12-14 16:12 30 浏览 0 评论
通常,我们只需为一个类添加@SpringBootApplication注解,然后再添加一个main方法,其内固定的写法为SpringApplication.run(Application.class, args)。由此,便可启动Spring Boot服务。
具体而言,Spring Boot的启动流程包括以下几个步骤:
- 载入 Spring Boot 应用的启动类
- 根据启动类所在的包路径扫描相关的类文件
- 基于扫描到的类自动配置 Spring 应用
- 激活内嵌的 Web 服务器
- 启动 Spring 应用程序的运行
深入解析Spring Boot启动过程的源码实现: - @SpringBootConfiguration // 标记该类为 Spring Boot 应用程序的配置类
@EnableAutoConfiguration // 启用 Spring Boot 的自动配置机制
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args); // 执行 Spring Boot 应用程序
}
} - 在启动 Spring Boot 应用程序时,需要在启动类上使用 @SpringBootApplication 注解,以通知 Spring Boot 这是应用程序的启动类。@SpringBootApplication 注解包含了三个子注解,分别为 @Configuration、@EnableAutoConfiguration 和 @ComponentScan,分别表示该类是配置类、启用自动配置和扫描组件。
在 main 方法中,我们可以使用以下代码来启动 Spring Boot 应用程序:
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}
该方法接受两个参数,第一个参数是启动类的类对象 MyApp.class,第二个参数是主方法的参数 args,主方法的参数可以通过命令行参数传递给应用程序。
在 SpringApplication.run 方法中,会执行以下几个步骤:
- 实例化一个 SpringApplication 对象,它存储了 Spring Boot 应用程序的所有配置信息。
- 基于 SpringApplication 中的配置信息,初始化一个 ApplicationContext 对象,它是 Spring 应用程序的上下文。
- 在 ApplicationContext 中注册所有带有 @Configuration 注解的类。
- 根据 @EnableAutoConfiguration 注解,自动配置 Spring 应用程序。
- 扫描所有带有 @Component 注解的类,并将它们注册到 ApplicationContext 中。
- 启动嵌入式 Web 服务器。
- 运行 Spring 应用程序。
以下是 SpringApplication.run 方法的源代码注释:
/**
* 这是 Spring Boot 应用程序的入口点
* @param primarySource 应用程序的主要源(通常是一个@Configuration类)。
* @param args 命令行参数。
* @return ApplicationContext。
*/
public static ConfigurableApplicationContext run(Class\<?> primarySource, String... args) {
return run(new Class[]{primarySource}, args);
}
/**
* 这是 Spring Boot 应用程序的入口点。
* @param primarySources 应用程序的主要源(通常是一个@Configuration类)。
* @param args 命令行参数。
* @return ApplicationContext。
*/
public static ConfigurableApplicationContext run(Class<?>[] primarySources, String[] args) {
// 创建一个新的 SpringApplication 实例,主要用于设置 SpringApplication 的属性
SpringApplication application = new SpringApplication(primarySources);
// 应用程序启动时应用的环境。 这可以被用来定制化应用程序环境以及激活不同的配置文件属性。默认情况下, SpringApplication 将使用适当的 PropertySourceLoader 从 application.properties 中加载默认的属性。
applyInitializers(application);
// 设置命令行参数
ConfigurableApplicationContext context = application.run(args);
// 后置操作
postProcessApplicationContext(context);
return context;
}
public static ConfigurableApplicationContext launch(Class<?> primarySource, String... args) {
return launch(new Class<?>[] { primarySource }, args);
}
public static ConfigurableApplicationContext launch(Class<?>[] primarySources, String[] args) {
// 创建 Launcher 对象,包含了所有的应用程序配置信息
Launcher launcher = new Launcher(primarySources);
// 运行应用程序,并返回上下文对象
return launcher.run(args);
}
public ConfigurableApplicationContext run(String... args) {
// 创建并启动 ConfigurableApplicationContext 对象,返回该对象
ConfigurableApplicationContext context = createApplicationContext();
// 执行应用程序的监听器
listeners.starting(this.applicationArguments);
try {
// 准备 ApplicationContext 环境
prepareEnvironment(context, this.environment);
// 配置 ApplicationContext
configureIgnoreBeanInfo(context);
// 执行所有的 ApplicationContextInitializer
applyInitializers(context);
// 执行所有的 LauncherRunListener 的 starting 方法
listeners.contextPrepared(context);
// 打印应用程序的 Banner
Banner printedBanner = printBanner();
// 创建 ApplicationContext
context.refresh();
// 将 ApplicationContext 注册到 JVM 关闭钩子中
prepareContext(context, printedBanner);
// 执行所有的 ApplicationContextInitializer 的 postProcessApplicationContext 方法
postProcessApplicationContext(context);
// 执行所有的 LauncherRunListener 的 contextLoaded 方法
listeners.contextLoaded(context);
}
catch (Throwable ex) {
handleRunFailure(context, ex, listeners);
throw new IllegalStateException(ex);
}
try {
// 执行所有的 LauncherRunListener 的 started 方法
listeners.started(context);
// 启动嵌入式的 Web 服务器
callRunners(context, this.applicationArguments);
}
catch (Throwable ex) {
handleRunFailure(context, ex, listeners);
throw new IllegalStateException(ex);
}
try {
// 执行所有的 LauncherRunListener 的 running 方法
listeners.running(context);
}
catch (Throwable ex) {
handleRunFailure(context, ex, listeners);
throw new IllegalStateException(ex);
}
return context;
}
在 SpringApplication.run 方法的执行过程中,会涉及到一系列关键步骤,其中包括 prepareEnvironment、applyInitializers、postProcessApplicationContext和callRunners 等方法的调用。这些方法都扮演着启动 Spring Boot 应用程序的重要角色,它们会对应用程序进行配置、初始化、启动等操作,确保整个应用程序的正常运行和稳定性。
好的,基本上三分钟已经讲完了,希望对各位有所帮助。如果还有任何疑问或需要补充的内容,欢迎在评论区或私信留言。今天的总结内容就到这里了,感谢大家的阅读。
相关推荐
- 如何将数据仓库迁移到阿里云 AnalyticDB for PostgreSQL
-
阿里云AnalyticDBforPostgreSQL(以下简称ADBPG,即原HybridDBforPostgreSQL)为基于PostgreSQL内核的MPP架构的实时数据仓库服务,可以...
- Python数据分析:探索性分析
-
写在前面如果你忘记了前面的文章,可以看看加深印象:Python数据处理...
- C++基础语法梳理:算法丨十大排序算法(二)
-
本期是C++基础语法分享的第十六节,今天给大家来梳理一下十大排序算法后五个!归并排序...
- C 语言的标准库有哪些
-
C语言的标准库并不是一个单一的实体,而是由一系列头文件(headerfiles)组成的集合。每个头文件声明了一组相关的函数、宏、类型和常量。程序员通过在代码中使用#include<...
- [深度学习] ncnn安装和调用基础教程
-
1介绍ncnn是腾讯开发的一个为手机端极致优化的高性能神经网络前向计算框架,无第三方依赖,跨平台,但是通常都需要protobuf和opencv。ncnn目前已在腾讯多款应用中使用,如QQ,Qzon...
- 用rust实现经典的冒泡排序和快速排序
-
1.假设待排序数组如下letmutarr=[5,3,8,4,2,7,1];...
- ncnn+PPYOLOv2首次结合!全网最详细代码解读来了
-
编辑:好困LRS【新智元导读】今天给大家安利一个宝藏仓库miemiedetection,该仓库集合了PPYOLO、PPYOLOv2、PPYOLOE三个算法pytorch实现三合一,其中的PPYOL...
- C++特性使用建议
-
1.引用参数使用引用替代指针且所有不变的引用参数必须加上const。在C语言中,如果函数需要修改变量的值,参数必须为指针,如...
- Qt4/5升级到Qt6吐血经验总结V202308
-
00:直观总结增加了很多轮子,同时原有模块拆分的也更细致,估计为了方便拓展个管理。把一些过度封装的东西移除了(比如同样的功能有多个函数),保证了只有一个函数执行该功能。把一些Qt5中兼容Qt4的方法废...
- 到底什么是C++11新特性,请看下文
-
C++11是一个比较大的更新,引入了很多新特性,以下是对这些特性的详细解释,帮助您快速理解C++11的内容1.自动类型推导(auto和decltype)...
- 掌握C++11这些特性,代码简洁性、安全性和性能轻松跃升!
-
C++11(又称C++0x)是C++编程语言的一次重大更新,引入了许多新特性,显著提升了代码简洁性、安全性和性能。以下是主要特性的分类介绍及示例:一、核心语言特性1.自动类型推导(auto)编译器自...
- 经典算法——凸包算法
-
凸包算法(ConvexHull)一、概念与问题描述凸包是指在平面上给定一组点,找到包含这些点的最小面积或最小周长的凸多边形。这个多边形没有任何内凹部分,即从一个多边形内的任意一点画一条线到多边形边界...
- 一起学习c++11——c++11中的新增的容器
-
c++11新增的容器1:array当时的初衷是希望提供一个在栈上分配的,定长数组,而且可以使用stl中的模板算法。array的用法如下:#include<string>#includ...
- C++ 编程中的一些最佳实践
-
1.遵循代码简洁原则尽量避免冗余代码,通过模块化设计、清晰的命名和良好的结构,让代码更易于阅读和维护...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- idea eval reset (50)
- vue dispatch (70)
- update canceled (42)
- order by asc (53)
- spring gateway (67)
- 简单代码编程 贪吃蛇 (40)
- transforms.resize (33)
- redisson trylock (35)
- 卸载node (35)
- np.reshape (33)
- torch.arange (34)
- node卸载 (33)
- npm 源 (35)
- vue3 deep (35)
- win10 ssh (35)
- exceptionininitializererror (33)
- vue foreach (34)
- idea设置编码为utf8 (35)
- vue 数组添加元素 (34)
- std find (34)
- tablefield注解用途 (35)
- python str转json (34)
- java websocket客户端 (34)
- tensor.view (34)
- java jackson (34)