Java设计模式:事件驱动模式(观察者模式)

2018-08-22  本文已影响0人  vczyh

Java设计模式——事件驱动模式(观察者模式)

角色

事件

事件类一般继承自java.util.EventObject类,封装了事件源以及跟事件有关的信息

source:事件源
getSource():获取事件源

public class EventObject implements java.io.Serializable {

    private static final long serialVersionUID = 5516075349620653480L;

    /**
     * The object on which the Event initially occurred
     */
    protected transient Object  source;

    /**
     * Constructs a prototypical Event.
     *
     * @param    source    The object on which the Event initially occurred.
     * @exception  IllegalArgumentException  if source is null.
     */
    public EventObject(Object source) {
        if (source == null)
            throw new IllegalArgumentException("null source");

        this.source = source;
    }

    /**
     * The object on which the Event initially occurred.
     *
     * @return   The object on which the Event initially occurred.
     */
    public Object getSource() {
        return source;
    }

    /**
     * Returns a String representation of this EventObject.
     *
     * @return  A a String representation of this EventObject.
     */
    public String toString() {
        return getClass().getName() + "[source=" + source + "]";
    }
}

事件源

每个事件包含一个事件源,事件源是事件发生的地方,由于事件源的某项属性或状态改变时,就会生成相应的事件对象,然后将事件对象通知给所有监听该事件源的监听器。

事件监听器

事件监听器一般需要实现java.util.EventListener接口

public interface EventListener {
}

EventListener 是个空接口,监听器必须要有回调方法供事件源回调,这个回调方法可以在继承或者实现EventListener 接口的时候自定义。

实现源码

Spring事件驱动

spring的事件驱动和上面的实现方式有些不同,最大的区别是监听器的添加方式,spring一般的添加方式是实现ApplicationListener接口,然后把实现类注册为Bean,spring的上下文初始化的时候会自动扫描路径下的实现ApplicationListener接口的类,然后添加到监听器集合里面,发布事件的时候会通知所有的监听器,这一切要依赖spring的容器管理Bean的功能。

上一篇下一篇

猜你喜欢

热点阅读