Spring事件通知机制

Posted dxdzy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring事件通知机制相关的知识,希望对你有一定的参考价值。

技术图片

 

 

技术图片

 

技术图片

 在上图中,调用 getApplicationEventMulticaster()方法,该方法返回的ApplicationEventMulticaster类型的对象applicationEventMulticaster,其实在抽象类AbstractApplicationContext中的addApplicationListener(ApplicationListener<?> listener)中,就已经将继承了ApplicationListener接口的监听器类添加到applicationEventMulticaster对象中(ApplicationEventMulticaster接口有相应的添加ApplicationListener类型监听器的方法addApplicationListener)。

接着调用ApplicationEventMulticaster类型对象的multicastEvent(applicationEvent, eventType),这里注意在getApplicationListeners()得到的是监听了指定事件的监听器。

最后让各个监听该事件的监听器去调用自己的onApplicationEvent(event)方法处理事件。

技术图片

 

以上是关于Spring事件通知机制的主要内容,如果未能解决你的问题,请参考以下文章

Spring 中的事件机制

Spring事件监听机制源码解析

spring学习笔记(15)趣谈spring 事件:实现业务逻辑解耦,异步调用提升用户体验

spring 自定义事件发布及监听(简单实例)

通过总线机制实现自动刷新客户端配置(Consul,Spring Cloud Config,Spring Cloud Bus)

spring-事件通知实现