spring内置事件
ContextRefreshedEvent:
ApplicationContext 被初始化或刷新时,该事件被发布。这也可以在 ConfigurableApplicationContext 接口中使用 refresh() 方法来发生。
ContextStartedEvent :
当使用 ConfigurableApplicationContext 接口中的 start() 方法启动 ApplicationContext 时,该事件被发布。你可以调查你的数据库,或者你可以在接受到这个事件后重启任何停止的应用程序。
ContextStoppedEvent:
当使用 ConfigurableApplicationContext 接口中的 stop() 方法停止 ApplicationContext 时,发布这个事件。你可以在接受到这个事件后做必要的清理的工作。
ContextClosedEvent:
当使用 ConfigurableApplicationContext 接口中的 close() 方法关闭 ApplicationContext 时,该事件被发布。一个已关闭的上下文到达生命周期末端;它不能被刷新或重启。
RequestHandledEvent:
这是一个 web-specific 事件,告诉所有 bean HTTP 请求已经被服务。
spring的事件处理是单线程的,如果一个事件被发布,直至并排除所有的接收者得到该消息,该进程被阻塞并且流程将不会继续。
实现ApplicationListener接口监听上下文事件
package com.tutorialspoint;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextStartedEvent;
public class CStartEventHandler
implements ApplicationListener<ContextStartedEvent>{
public void onApplicationEvent(ContextStartedEvent event) {
System.out.println("ContextStartedEvent Received");
}
}
Spring自定义事件(使用场景观察者模式)
使用观察者模式实现对创建订单和发送消息通知进行分离,实现低耦合。(可选用消息队列,事件机制),在springboot中可开启异步实现异步处理事件。
https://blog.csdn.net/weixin_39035120/article/details/86225377(转)