前言
本节内容是关于springboot的一些核心原理的总结,包括springboot的事件原理、生命周期流程、事件触发流程等核心内容的介绍,从而帮助我们更好的理解与使用springboot,这里只做概念性的内容总结,实战的部分请关注作者后续博客内容。
正文
- 监听springboot应用生命周期的监听器SpringApplicationRunListener
- 自定义SpringApplicationRunListener监听器来监听springboot应用事件
package com.yundi.isbc.listen;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.ConfigurableBootstrapContext;
import org.springframework.boot.SpringApplicationRunListener;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.env.ConfigurableEnvironment;
import java.time.Duration;
public class MySpringApplicationRunListener implements SpringApplicationRunListener {
@Override
public void starting(ConfigurableBootstrapContext bootstrapContext) {
System.out.println("==========================容器正在启动==========================");
}
@Override
public void environmentPrepared(ConfigurableBootstrapContext bootstrapContext, ConfigurableEnvironment environment) {
System.out.println("==========================容器环境准备完成==========================");
}
@Override
public void contextPrepared(ConfigurableApplicationContext context) {
System.out.println("==========================容器准备完成==========================");
}
@Override
public void contextLoaded(ConfigurableApplicationContext context) {
System.out.println("==========================容器加载==========================");
}
@Override
public void started(ConfigurableApplicationContext context, Duration timeTaken) {
System.out.println("==========================容器开启==========================");
}
@Override
public void ready(ConfigurableApplicationContext context, Duration timeTaken) {
System.out.println("==========================容器准备就绪==========================");
}
@Override
public void failed(ConfigurableApplicationContext context, Throwable exception) {
System.out.println("==========================容器启动失败==========================");
}
}
- 在META-INF/spring.factories中配置自定义的监听器MySpringApplicationRunListener
- 启动springboot项目,查看打印日志,确认springboot的启动生命周期流程
- spring的生命周期说明:springboot启动主要分为三大步:引导、启动、运行
- 引导:利用 BootstrapContext 引导整个项目启动,starting阶段是SpringApplication的run方法执行的开始阶段,environmentPrepared阶段主要是把启动参数绑定到环境变量中,此时IOC容器还没有创建。
- 启动:contextPrepared阶段ioc容器完成创建并准备好,但是sources(主配置类)资源还没有加载,同时关闭引导上下文 BootstrapContext ,此时Bean组件还没有创建;contextLoaded阶段ioc容器加载完成,主配置类加载到了IOC容器,但是ioc容器还没有刷新,程序Bean还没有加载;started阶段ioc容器刷新了(所有bean完成注入),但是 runner还没调用;ready阶段ioc容器刷新了(所有bean完成注入),所有 runner 也都调用完成了。
- 运行:此时app应用完成加载,应用可以实现访问处理。
- springboot的回调监听器
- BootstrapRegistryInitializer:感知特定阶段:感知引导初始化
- ApplicationContextInitializer:感知特定阶段: 感知ioc容器初始化,在META-INF/spring.factories下配置。
- ApplicationListener:感知全阶段:基于事件机制,感知事件,在META-INF/spring.factories下配置
- SpringApplicationRunListener:感知全阶段生命周期 + 各种阶段都能自定义操作,在META-INF/spring.factories下配置
- ApplicationRunner:感知特定阶段:感知应用就绪Ready。
- CommandLineRunner:感知特定阶段:感知应用就绪Ready。
- springboot的回调监听器的最佳实践
- 项目启动前:使用
BootstrapRegistryInitializer
和ApplicationContextInitializer
- 项目启动完成:使用ApplicationRunner、CommandLineRunner
- 在springboot的生命周期任意阶段:使用SpringApplicationRunListener
- 事件驱动:使用ApplicationListener
- springboot的事件感知
- 实现自定义的ApplicationListener监听器
package com.yundi.isbc.listen;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
public class MyApplicationListener implements ApplicationListener<ApplicationEvent> {
@Override
public void onApplicationEvent(ApplicationEvent event) {
System.out.println("--------------------------事件感知-----------------------"+event);
}
}
- 在META-INF/spring.factories中配置自定义的ApplicationListener监听器
- 启动应用程序,查看springboot的事件触发顺序&时机
- springboot的9大事件触发顺序&时机
- ApplicationStartingEvent:应用启动但未做任何事情, 除过注册listeners and initializers
- ApplicationEnvironmentPreparedEvent: Environment 准备好,但context 未创建
- ApplicationContextInitializedEvent: ApplicationContext 准备好,ApplicationContextInitializers 调用,但是任何bean未加载
- ApplicationPreparedEvent: 容器刷新之前,bean定义信息加载
- ApplicationStartedEvent: 容器刷新完成, runner未调用
- AvailabilityChangeEvent:LivenessState.CORRECT应用存活; 存活探针
- ApplicationReadyEvent: 任何runner被调用
- AvailabilityChangeEvent:ReadinessState.ACCEPTING_TRAFFIC就绪探针,可以接请求
- ApplicationFailedEvent :启动出错
结语
关于springboot的事件与监听器原理等相关内容到这里就结束了,我们下期见。。。。。。