跳至主要內容

Java 事件实现

Steven大约 2 分钟java

事件/消息

事件驱动模型:生产者、消费者

观察者模式

工具: JDK Observable

解耦: 生产和消费的方法解耦

被观察者 - 观察者

发布订阅模式

工具: Guava EventBus

解耦: 生产和消费的关系解耦

发布者 - 消息总线 - 订阅者

框架:Guava EventBus

link

框架:Spring Event

特性:

  • 支持异步 —— @Async
  • 支持条件配置 —— @EventListener(condition = "...")

基本使用

Event
package org.example.event;

import lombok.*;
import org.springframework.context.ApplicationEvent;

@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class SimpleEvent extends ApplicationEvent {
    private String name;
    /**
     * Create a new ApplicationEvent.
     *
     * @param source the object on which the event initially occurred (never {@code null})
     */
    public SimpleEvent(Object source) {
        super(source);
    }
}

自定义事件,封装实现按标识处理

特性:

  • 监听事件可按 Topic 区分处理
  • 监听器统一配置
Event
package org.example.eventTpoic;

import lombok.Getter;
import org.springframework.context.ApplicationEvent;

@Getter
public class TopicEvent extends ApplicationEvent {
    private Topic topic;

    /**
     * Create a new ApplicationEvent.
     *
     * @param source the object on which the event initially occurred (never {@code null})
     */
    public TopicEvent(Topic topic, Object source) {
        super(source);
        this.topic = topic;
    }
}

内置事件

事件描述
ContextRefreshedEvent容器实例被实例化或者 refreshed(触发 refresh() 方法)时触发事件。
ContextStartedEvent容器启动时(触发 start() 方法)触发事件。
ContextStoppedEvent容器停止时(触发 stop() 方法)触发事件。此时所有 bean 收到 stop 信号。可通过 start() 方法重启容器。
ContextClosedEvent容器关闭时(触发 close() 方法)触发事件。此时所有 bean 已经销毁。容器无法重启。
RequestHandledEventSpring Web 中 DispatcherServlet 处理完一个请求后触发事件。