导读
开发环境
版本号 | 描述 | |
---|---|---|
IDEA | 2021.3 | |
springboot | 2.5.4 |
启动过程思想解析
springboot核心是加速spring。
调用流程
new
run
核心就是:
- 创建
容器对象
:335行,context = createApplicationContext();
。- 之后为
初始化容器对象
。
监听器类型
参考资料
- 黑马程序员SpringBoot2全套视频教程,springboot零基础到项目实战(spring boot2完整版)https://www.bilibili.com/video/BV15b4y1a7yG
- 课程中代码地址: https://gitee.com/yeahmao/study__springboot