有道无术,术尚可求,有术无道,止于术。 本系列Spring Boot版本3.1.0 源码地址:https://gitee.com/pearl-organization/study-spring-boot3 文章目录 1. 前言 2. 核心类 2.1 SpringApplicationRunListener 2.2 ApplicationStartup 2.3 ApplicationListener 3. 执行流程 3.1 获取监听器 3.2. starting 3.3. 广播事件 3.4. 调用Spring 监听器 4. 总结 1. 前言 紧接上文,接下来分析启动监听器: // 3. 获取监听器 SpringApplicationRunListeners listeners = this.getRunListeners(args);