spring boot 监听容器启动代码实例

网友投稿 414 2022-12-25


spring boot 监听容器启动代码实例

在使用Spring框架开发时, 有时我们需要在spring容器初始化完成后做一些操作, 那么我们可以通过自定义ApplicationListener 来实现.

自定义监听器

@Component

AehGwkpublic class MyApplicationListener implements ApplicationListener {

@Override

public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {

// 获取spring 上下文

ApplicationContext applicationContext = contextRefreshedEvent.getApplicationContext();

// do your work...

}

源码分析

springboot 启动应用, 执行 SpringApplication.run(String… args) 方法

run方法中执行完初始化上下文方法后, 会执行this.refreshContext方法, 刷新

经过一堆方法跳转, 执行 AbstractApplicationContextl类的publishEvent(Object event, @Nullable ResolvableType eventType) 方法

然后执行 SimpleApplicationEventMulticaster.multicastEvent(ApplicationEvent event, @Nullable ResolvableType eventType)

然后依次执行所有监听器的onApplicationEvent()方法

// 遍历所有ApplicationListeners, 依次执行ApplicationListener 的onApplicationEvent()方法

public void multicastEvent(ApplicationEvent event, @Nullable ResolvableType eventType) {

ResolvableType type = eventType != null ? eventType : this.resolveDefaultEventType(event);

Iterator var4 = this.getApplicationListeners(event, type).iterator();

while(var4.hasNext()) {

ApplicationListener> listener = (ApplicationListener)var4.next();

Executor executor = this.getTaskExecutor();

if (executor != null) {

executor.execute(() -> {

this.invokeListener(listener, event);

});

} else {

this.invokeListener(listener, event);

}

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java多线程及分布式爬虫架构原理解析
下一篇:java 对象参数去空格方式代码实例
相关文章

 发表评论

暂时没有评论,来抢沙发吧~