spring-boot-2.0.3不一样系列之番外篇 - springboot事件机制,绝对有值得你看的地方
前言
本来打算这篇继续和大家一起讨论springboot启动源码的,可觉得再讲源码估计大家都没有看下去的勇气了,那么今天,我们不讲springboot的启动源码,我们先来看看一个有趣的内容,具体是什么,大家应该已经知道了,没错就是标题中的 – spring-boot事件。
可能有小伙伴觉得奇怪了,好好的源码系列不讲了,怎么突然讲一个无关紧要的内容呢?那么真的是无关紧要的内容吗?关于这个疑问后面会有解答。目前大家就权当放松了,以一种轻松的心态和我一起往下看。
观察者模式
说好的不是讲springboot的事件机制吗,怎么又讲什么观察者模式呢?心里会说:“楼主,你还好吗,你今天是不是被门夹了?”。楼主:“被门夹?不存在的,一般只有我夹门......”
还是那就话,大家放松心态慢慢看,心中的疑问先放在心里或者用笔记录下来,后面会慢慢解开的。
概念其实很简单,两个主体,一个观察者,一个被观察者,当被观察者发生变化时,观察者会有相应的动作。举几个例子,和我们日常生活息息相关的红绿灯,灯就相当于被观察者,行人就相当于观察者,当灯发生变化时,行人会有相应的动作:红灯停,绿灯行,黄灯亮了等一等。再比如我们现在玩的公众号,当我们订阅了某个公众号之后,公众号每发表一篇文章,就会向订阅了它的用户发送这篇文章,我们就可以浏览这篇文章了;当我们取消订阅了,它就不会再向我们推送这篇文章了;只要这个公众号一直在运行,就会一直有人订阅它或者取消订阅。这两个主体有个统一的称呼:被观察者成为主题(subject),观察者仍是称为观察者(observer)。
观察者模式还有很多其他的称谓,如发布-订阅(publish/subscribe)模式、模型-视图(model/view)模式、源-监听器(source/listener)模式或从属者(dependents)模式。观察者模式定义了一种一对多的依赖关系,让多个观察者对象同时监听某一个主题对象。这个主题对象在状态上发生变化时,会通知所有观察者对象,使它们能够自动更新自己。
理论上的东西讲的再多也只是停留在理论,下面我们来实现下,到底观察者模式是个什么神奇的东西。
类图
所涉及到的角色如下:
抽象主题(subject):提供接口,可以增加和剔除观察者对象。一般用抽象类或者接口实现。
抽象观察者(observer):提供接口,在得到主题的通知时更新自己。一般用抽象类或者接口实现。
具体主题(concretesubject):将有关状态存入具体观察者,在具体主题的内部状态发生变化时,给所有注册过的观察者发出通知。一般是具体子类实现。
具体观察者(concreteobserver):存储与主题的状态自恰的状态。具体观察者角色实现抽象观察者角色所要求的更新接口,以便使本身的状态与主题的状态 像协调。如果需要,具体观察者角色可以保持一个指向具体主题对象的引用
在上述类图中,concretesubject中有一个存储observer的列表,这意味着concretesubject并不需要知道引用了哪些concreteobserver,只要实现(继承)了observer的对象都可以存到该列表中。在需要的时候调用observer的update方法。
一般实现
subject:
package com.lee.myobserver; /** * 抽象主题 * 提供具体主题需要实现的接口 */ public interface subject { /** * 注册观察者 * @param observer */ void attach(observer observer); /** * 移除观察者 * @param observer */ void detach(observer observer); /** * 通知所有注册的观察者 */ void notifyobservers(); }
observer:
package com.lee.myobserver; /** * 抽象观察者 * 提供具体观察者需要实现的接口 */ public interface observer { /** * */ void update(string state); }
concretesubject:
package com.lee.myobserver.impl; import com.lee.myobserver.observer; import com.lee.myobserver.subject; import java.util.arraylist; import java.util.list; /** * 具体主题 */ public class concretesubject implements subject { private list<observer> observerlist = new arraylist<>(); private string state; @override public void attach(observer observer) { this.observerlist.add(observer); system.out.println("向concretesubject注册了一个观察者"); } @override public void detach(observer observer) { this.observerlist.remove(observer); system.out.println("从concretesubject移除了一个观察者"); } @override public void notifyobservers() { this.observerlist.foreach(observer -> observer.update(this.state)); } public void changestate(string state) { this.state = state; this.notifyobservers(); } }
concreteobserver:
package com.lee.myobserver.impl; import com.lee.myobserver.observer; /** * 具体观察者 */ public class concreteobserver implements observer { @override public void update(string state) { system.out.println("我被通知了,我要改变状态为:" + state); } }
myobservertest:
package com.lee.test; import com.lee.myobserver.observer; import com.lee.myobserver.impl.concreteobserver; import com.lee.myobserver.impl.concretesubject; public class myobservertest { public static void main(string[] args) { concretesubject subject = new concretesubject(); observer observer = new concreteobserver(); subject.attach(observer); subject.changestate("new state"); } }
完整代码可以从获取,在com.lee.myobserver下
运行结果如下:
以上实现中,我们发现concretesubject必须维护一个observer列表,这会让人产生疑问:难道每个concretesubject中的list<observer>会有不同吗?很明显,不会,因为list保存的类型是接口类型,那么我们是不是可以把这个维护列表放到subject中去了?还有我们发现attach、detach、notifyobservers在各个concretesubject的实现都是一样的,那么我们是不是可以共用起来呢?答案是肯定的!那么我们怎么处理了,只需要将subject改成抽象类即可,类图如下,具体实现就交给大家自己了,有了这个类图,相信大家都可以轻松的完成代码的实现。
jdk实现
在java语言的java.util包下,提供了一个observable类以及一个observer接口,构成java语言对观察者模式的支持。
observable:
package java.util; /** * 抽象主题,用普通类实现 */ public class observable { private boolean changed = false; private vector<observer> obs; /** * 构建一个含有0个观察者的主题 */ public observable() { obs = new vector<>(); } /** * 注册某个观察者到obs中 */ public synchronized void addobserver(observer o) { if (o == null) throw new nullpointerexception(); if (!obs.contains(o)) { obs.addelement(o); } } /** * 从obs中移除某个观察者 */ public synchronized void deleteobserver(observer o) { obs.removeelement(o); } /** * 相当于notifyobservers(null),具体看下面那个 */ public void notifyobservers() { notifyobservers(null); } /** * 如果本对象有变化,则通知所有注册了的观察者,调用他们的update方法 */ public void notifyobservers(object arg) { /* * a temporary array buffer, used as a snapshot of the state of * current observers. */ object[] arrlocal; synchronized (this) { if (!changed) return; arrlocal = obs.toarray(); clearchanged(); } for (int i = arrlocal.length-1; i>=0; i--) ((observer)arrlocal[i]).update(this, arg); } /** * 清空obs */ public synchronized void deleteobservers() { obs.removeallelements(); } /** * 将changed设置成true,标明本对象发生了变化 */ protected synchronized void setchanged() { changed = true; } /** * 将changed重置成false */ protected synchronized void clearchanged() { changed = false; } /** * 检测本对象是否发生了变化 */ public synchronized boolean haschanged() { return changed; } /** * 返回注册的观察者数量 */ public synchronized int countobservers() { return obs.size(); } }
observer:
package java.util; /** * 抽象观察者,接口实现 */ public interface observer { /** * 当被观察者对象发生改变时,此方法被调用 */ void update(observable o, object arg); }
watched:
package com.lee.jdkobserver; import java.util.observable; /** * 具体主题 */ public class watched extends observable { private string data = ""; public void changedata(string data) { if (this.data.equals(data)) { return; } this.data = data; setchanged(); notifyobservers(this.data); } }
watcher:
package com.lee.jdkobserver; import java.util.observable; import java.util.observer; /** * 具体观察者,实现jdk中的observer */ public class watcher implements observer { @override public void update(observable o, object arg) { system.out.println("数据改变成了:" + arg); } }
jdkobservertest:
package com.lee.test; import com.lee.jdkobserver.watched; import com.lee.jdkobserver.watcher; import java.util.observer; public class jdkobservertest { public static void main(string[] args) { watched watched = new watched(); observer observer = new watcher(); watched.addobserver(observer); watched.changedata("first"); watched.changedata("second"); watched.changedata("third"); watched.changedata("fourth"); } }
完整代码可以从获取,在com.lee.jdkobserver下
运行结果如下
类图如下
jdk事件
jdk 1.0及更早版本的事件模型基于职责链模式,但是这种模型不适用于复杂的系统,因此在jdk 1.1及以后的各个版本中,事件处理模型采用基于观察者模式的委派事件模型(delegationevent model, dem),即一个java组件所引发的事件并不由引发事件的对象自己来负责处理,而是委派给独立的事件处理对象负责。这并不是说事件模型是基于observer和observable的,事件模型与observer和observable没有任何关系,observer和observable只是观察者模式的一种实现而已。
java中的事件机制的参与者有3种角色
event eource:事件源,发起事件的主体。
event object:事件状态对象,传递的信息载体,就好比watcher的update方法的参数,可以是事件源本身,一般作为参数存在于listerner 的方法之中。
event listener:事件监听器,当它监听到event object产生的时候,它就调用相应的方法,进行处理。
其实还有个东西比较重要:事件环境,在这个环境中,可以添加事件监听器,可以产生事件,可以触发事件监听器。
限于篇幅,具体案例实现就不讲了,大家可以去获取,在com.lee.jdkevent下,里面注释写的很详细了,大家可以好好看看。
spring事件机制
springboot没有自己的事件机制,用的就是spring的事件机制,这里希望大家别以为和标题不一致。springboot和spring的关系大家可以去捋一捋,这里可以明确的告诉大家,不是对立关系!
spring的事件机制也是从java的事件机制拓展而来,具体往下看
applicationevent:spring中所有的事件父接口,继承自java的eventobject
/* * copyright 2002-2015 the original author or authors. * * licensed under the apache license, version 2.0 (the "license"); * you may not use this file except in compliance with the license. * you may obtain a copy of the license at * * http://www.apache.org/licenses/license-2.0 * * unless required by applicable law or agreed to in writing, software * distributed under the license is distributed on an "as is" basis, * without warranties or conditions of any kind, either express or implied. * see the license for the specific language governing permissions and * limitations under the license. */ package org.springframework.context; import java.util.eventobject; /** * class to be extended by all application events. abstract as it * doesn't make sense for generic events to be published directly. * * @author rod johnson * @author juergen hoeller */ public abstract class applicationevent extends eventobject { /** use serialversionuid from spring 1.2 for interoperability */ private static final long serialversionuid = 7099057708183571937l; /** system time when the event happened */ private final long timestamp; /** * create a new applicationevent. * @param source the object on which the event initially occurred (never {@code null}) */ public applicationevent(object source) { super(source); this.timestamp = system.currenttimemillis(); } /** * return the system time in milliseconds when the event happened. */ public final long gettimestamp() { return this.timestamp; } }
applicationlistener:spring中所有的事件监听器父接口,继承自java的eventlistener
/* * copyright 2002-2016 the original author or authors. * * licensed under the apache license, version 2.0 (the "license"); * you may not use this file except in compliance with the license. * you may obtain a copy of the license at * * http://www.apache.org/licenses/license-2.0 * * unless required by applicable law or agreed to in writing, software * distributed under the license is distributed on an "as is" basis, * without warranties or conditions of any kind, either express or implied. * see the license for the specific language governing permissions and * limitations under the license. */ package org.springframework.context; import java.util.eventlistener; /** * interface to be implemented by application event listeners. * based on the standard {@code java.util.eventlistener} interface * for the observer design pattern. * * <p>as of spring 3.0, an applicationlistener can generically declare the event type * that it is interested in. when registered with a spring applicationcontext, events * will be filtered accordingly, with the listener getting invoked for matching event * objects only. * * @author rod johnson * @author juergen hoeller * @param <e> the specific applicationevent subclass to listen to * @see org.springframework.context.event.applicationeventmulticaster */ @functionalinterface public interface applicationlistener<e extends applicationevent> extends eventlistener { /** * handle an application event. * @param event the event to respond to */ void onapplicationevent(e event); }
具体案例
messageevent:
package com.lee.springevent.event; import org.springframework.context.applicationevent; /** * 短信事件,事件信息的载体 * 可以从中获取事件源信息,本例中source不代表事件源 */ public class messageevent extends applicationevent { public messageevent(object source) { super(source); } }
messagelistener:
package com.lee.springevent.listener; import com.lee.springevent.event.messageevent; import org.springframework.context.applicationevent; import org.springframework.context.applicationlistener; public class messagelistener implements applicationlistener{ @override public void onapplicationevent(applicationevent event) { if(event instanceof messageevent) { string phonenumber = (string)event.getsource(); system.out.println("我已收到通知:即将向"+phonenumber+"发短信了..."); } } }
messageservice:
package com.lee.springevent.service; import com.lee.springevent.event.messageevent; import org.springframework.beans.beansexception; import org.springframework.context.applicationcontext; import org.springframework.context.applicationcontextaware; /** * applicationcontextaware,能够获取spring的上下文环境 * * messageservice相当于之前说的事件环境 */ public class messageservice implements applicationcontextaware { private applicationcontext ctx; @override public void setapplicationcontext(applicationcontext applicationcontext) throws beansexception { this.ctx = applicationcontext; } public void sendmessage(string phonenumber) { messageevent evt = new messageevent(phonenumber); // 发布事件 ctx.publishevent(evt); } }
spring-event.xml:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="messageservice" class="com.lee.springevent.service.messageservice" /> <bean id="messagelistener" class="com.lee.springevent.listener.messageservicelistener" /> </beans>
springeventtest:
package com.lee.test; import com.lee.springevent.service.messageservice; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; public class springeventtest { public static void main(string[] args) { applicationcontext applicationcontext = new classpathxmlapplicationcontext("spring-event.xml"); messageservice messageservice = (messageservice) applicationcontext.getbean("messageservice"); messageservice.sendmessage("1574480311"); } }
执行springeventtest中的main方法就可以看到结果了。
更多详情请从获取,在com.lee.springevent下,大家可以根据注释好好消化下。实在是不懂得话,可以放一下,下篇博文我会和大家一起着重研究下spring的事件源码,后续的博文中也都会有提到。
总结
为什么讲与springboot启动源码无关的内容
关于前言中的疑问:为什么讲一篇与spring启动源码无关的内容,有两个考虑,第一,确实是让大家放松下心态,读源码确实挺累的;第二,主要目的,就是为springboot启动源码篇二做准备,下篇博客会涉及到spring的事件机制
观察者模式优点与缺点
上面长篇大论,似乎也没讨论其优点与缺点;其实通过实现大家应该才能体会到其优点与缺点,我总结下,有什么不对的大家可以在评论区补充
优点:
(1) 主题与观察者建立一个抽象的耦合而不是紧密的耦合,降低了耦合度;主题只需要维护一个抽象观察者的集合,无需了解具体观察者,使得可以有各种各样不同的观察者实现。
(2) 支持广播通信,主题会向所有已注册的观察者对象发送通知,简化了一对多系统设计的难度。
(3) 符合“开闭原则”,增加新的具体观察者无须修改原有代码,可拓展性高。
缺点:
(1) 如果主题有很多直接或者间接观察者,那么全部通知到会很耗时。
(2) 主题与观察者之间如果存在循环依赖,可能导致系统崩溃。
观察者模式应用场景
抽象的来讲:对一个对象状态的更新,需要其他对象同步更新,而且其他对象的数量动态可变;对象仅需要将自己的更新通知给其他对象而不需要知道其他对象的细节。大家可以根据以上两点作为基本准则,某个场景是否满足观察者模式。
具体应用场景就有很多了,比如文中的事件机制、公众号订阅,tomcat源码中也有很多地方用到了(有兴趣的兄弟可以去找找)。
事件机制
jdk事件实现是基于观察者模式,而spring事件又是在jdk事件的基础上进行了拓展。
主要有四个角色
事件源:触发事件的主体,比如jdk事件案例中的userservice、spring事件案例中的messageservice、springboot中的springapplication。
事件:事件本身,指的是eventobject中的source,具体可以是任何数据(包括事件源),用来传递数据,比如jdk事件案例中messageevent、spring事件案例中的messageevent。
事件监听器:当事件发生时,负责对事件的处理,比如jdk事件案例中messagelistener、spring事件案例中的messagelistener。
事件环境:整个事件所处的上下文,对整个事件提供支持,类似web上下文;比如jdk事件案例中的userservice、spring事件案例中的applicationcontext
参考
《head first 设计模式》
《java与模式》
推荐阅读
-
spring-boot-2.0.3不一样系列之源码篇 - run方法(三)之createApplicationContext,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之番外篇 - 自定义session管理,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之番外篇 - springboot事件机制,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之源码篇 - SpringApplication的run方法(一)之SpringApplicationRunListener,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之源码篇 - run方法(三)之createApplicationContext,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之番外篇 - 自定义session管理,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之源码篇 - run方法(四)之prepareContext,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之源码篇 - SpringApplication的run方法(一)之SpringApplicationRunListener,绝对有值得你看的地方
-
spring-boot-2.0.3不一样系列之番外篇 - springboot事件机制,绝对有值得你看的地方