从spring框架中的事件驱动模型出发,优化实际应用开发代码
一、事件起源
相信很多人在使用spring框架进行开发时,都会遇到这样的需求:在spring启动后,立即加载部分资源(例如:spring启动后立刻加载资源初始化到redis中)。当我去解决这个问题时发现,springboot启动过程中会有事件驱动模型的具体实现,共有两种实现:
1)第一种实现,具体代码如下:
import org.springframework.boot.context.event.ApplicationStartedEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component; @Component //将监听者交由spring管理
public class StartedListener implements ApplicationListener<ApplicationStartedEvent> {
//实现了ApplicationListener接口并监听ApplicationStartedEvent事件 覆盖当事件发生的方法
@Override
public void onApplicationEvent(ApplicationStartedEvent applicationStartedEvent) {
System.out.println("i am started is ready ...");//只需改为调用具体的业务方法即可
}
}
2)第二种实现,具体代码如下:
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component; @Component //将监听者交由spring管理
public class CommandListener implements CommandLineRunner {
//实现了CommandLineRunner接口并覆盖run()方法
@Override
public void run(String... args) throws Exception {
System.out.println("i am commandline runner is ready ...");//将输出改为调用具体的业务方法即可
}
}
第一种和第二种之间存在联系,稍后会介绍两者之间的联系和区别,我们更加直观的可以看到第一种方法中的具体实现。
发现,1、只需要实现ApplicationListener这个接口,2、并声明泛型-监听的具体事件,3、然后覆盖onApplicationEvent()方法三步走战略即可。
还发现一个优势:如果一个将一个具体业务形象化为一个“事件”,例如:用户注册或者是用户下订单,这种具体的业务如果改造成事件的话,就可以实现解耦,方便以后添加用户注册或者下订单后的操作,举个栗子:
买家用户下订单 -> 1、扣去商品表中的库存数量 -> 2、短信通知买家用户下单成功 -> 3、通知商家用户物流发货 -> 4、微信通知买家下单成功 等 后续操作
如果现在,我们需要对该业务代码进行变化,我们需要增加一个需求变化:需要在买家用户下订单成功后,给买家用户进行:小程序通知,当你面对这个需求时,很直观的感觉应该是去直接在具体的业务代码下,加上一个小程序通知即可,可是忽略了之前可能有对应的逻辑操作,这个时候可能还需要花费一些时间,把之前的代码给看清楚,避免自己维护代码时出现问题。
这个时候如果我们直接去用事件驱动模型这种方式,来思考我们的业务,完全可以把买家用户下订单这个作为一个事件存在,这样其他的操作就是并行的操作,可以独立存在,如果需要直接添加就可以了。
我们先来看一下原来未改造之前的代码:
import com.shuwen.demo.service.OrderService;
import org.springframework.stereotype.Service; @Service
public class OrderServiceImpl2 implements OrderService { @Override
public void saveOder() {
//1、创建订单
System.out.println("订单创建成功");
//2、发送短信通知
System.out.println("用户您好,恭喜您抢购成功~来自短信");
//3、发送微信通知
System.out.println("用户您好,恭喜您抢购成功~来自微信");
//4、发送小程序通知
System.out.println("用户您好,恭喜您抢购成功~来自小程序");
}
}
再来对比一下改造之后的代码:
a)首先声明一个事件:OrderCreateEvent
import org.springframework.context.ApplicationEvent;
//继承ApplicationEvent即可
public class OrderCreateEvent extends ApplicationEvent {
//默认覆盖
public OrderCreateEvent(Object source) {
super(source);
}
}
b)当买家下订单成功后,就需要创建并发布一个事件
import com.shuwen.demo.event.OrderCreateEvent;
import com.shuwen.demo.service.OrderService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Service; @Service
public class OrderServiceImpl implements OrderService {
@Autowired
ApplicationContext applicationContext;
@Override
public void saveOder() {
//1、创建订单
System.out.println("订单创建成功");
//创建订单创建的事件
OrderCreateEvent orderCreateEvent = new OrderCreateEvent("order create is success");
//利用applicationContext将事件发布
applicationContext.publishEvent(orderCreateEvent);
//2、发送短信通知
//3、发送微信通知
//4、发送小程序通知
}
}
c)我们就可以模仿spring进行监听事件发生,然后完成后续操作
1、进行短信通知
import com.shuwen.demo.event.OrderCreateEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component; @Component //交给spring管理 实现接口并监听事件源
public class MessageListener implements ApplicationListener<OrderCreateEvent> {
@Async //可以异步执行
@Override //覆盖方法 即可实现具体的业务操作
public void onApplicationEvent(OrderCreateEvent orderCreateEvent) {
System.out.println(orderCreateEvent.getSource()+",message is sending");
}
}
2、进行微信通知
import com.shuwen.demo.event.OrderCreateEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component; @Component
public class WeixinListener implements ApplicationListener<OrderCreateEvent> {
@Async
@Override
public void onApplicationEvent(OrderCreateEvent orderCreateEvent) {
System.out.println(orderCreateEvent.getSource()+",weixin is sending");
}
}
3、这时候如果新需求是增加:小程序通知,我们直接添加一个监听者 即可。
import com.shuwen.demo.event.OrderCreateEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component; @Component
public class LittleProListener implements ApplicationListener<OrderCreateEvent> {
@Async
@Override
public void onApplicationEvent(OrderCreateEvent orderCreateEvent) {
System.out.println(orderCreateEvent.getSource()+",xiao cheng xu is sending ...");
}
}
能够写出这样代码的人,你要珍惜他,因为当你维护他的项目时,很轻松,不用担心出现问题,也不必费时看原来的逻辑。
这时候,可能就有人有这样的问题,这如果存在逻辑顺序怎么处理这个问题呢?
如果存在这种逻辑顺序,我们又该如何处理,spring自然给我们提供了方法,哈哈,这就是spring的魅力~
它的名字很有意思:SmartApplicationListener smart是不是一下就聪明、伶俐了很多~
我们先看看它是如何实现具体的业务的,方便大家更好的理解:
a)微信通知
import com.shuwen.demo.event.OrderCreateEvent;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.event.SmartApplicationListener;
import org.springframework.stereotype.Component; @Component //实现smart接口
public class SmsListener implements SmartApplicationListener {
@Override //声明支持的事件类型
public boolean supportsEventType(Class<? extends ApplicationEvent> aClass) {
return aClass == OrderCreateEvent.class;
} @Override //参数的类型
public boolean supportsSourceType(Class<?> sourceType) {
return sourceType == String.class;
}
//order 确定优先级的顺序 数值越小 优先级越高
@Override //优先级数值
public int getOrder() {
return 5;
} @Override //具体的业务实现
public void onApplicationEvent(ApplicationEvent applicationEvent) {
System.out.println(applicationEvent.getSource()+",sms is sending smart");
}
}
b)微信通知
import com.shuwen.demo.event.OrderCreateEvent;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.event.SmartApplicationListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component; @Async
@Component //实现smart接口
public class WeixinListenerSmart implements SmartApplicationListener {
@Override //声明支持的事件类型
public boolean supportsEventType(Class<? extends ApplicationEvent> aClass) {
return aClass == OrderCreateEvent.class;
} @Override //声明支持的参数类型
public boolean supportsSourceType(Class<?> sourceType) {
return sourceType == String.class;
} @Override //声明优先级的大小 越小越高
public int getOrder() {
return 2;
} @Override //覆盖方法 实现具体的业务方法
public void onApplicationEvent(ApplicationEvent applicationEvent) {
System.out.println(applicationEvent.getSource()+",weixin is sending smart");
}
}
c)小程序通知
import com.shuwen.demo.event.OrderCreateEvent;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.event.SmartApplicationListener;
import org.springframework.stereotype.Component; @Component //实现smart接口
public class LittleProListenerSmart implements SmartApplicationListener {
@Override //声明支持的事件类型
public boolean supportsEventType(Class<? extends ApplicationEvent> aClass) {
return aClass == OrderCreateEvent.class;
} @Override //声明支持的参数类型
public boolean supportsSourceType(Class<?> sourceType) {
return sourceType == String.class;
} @Override //声明该监听者的优先级
public int getOrder() {
return 6;
} @Override //具体的业务实现
public void onApplicationEvent(ApplicationEvent applicationEvent) {
System.out.println(applicationEvent.getSource()+",xiao cheng xu is sending smart");
}
}
大家一定要记得清楚哟,order值越小,优先级越高。
那么下面,我们要去追根溯源一下,看看spring的事件驱动模式的具体实现及相关的原理,让我们有一个更加深入的理解。
二、spring提供的事件驱动模型/观察者抽象
我们首先需要了解一下spring的体系结构图:
public void publishEvent(ApplicationEvent event) {
//省略部分代码
}
getApplicationEventMulticaster().multicastEvent(event);
if (this.parent != null) {
this.parent.publishEvent(event);
}
}
我们常用的ApplicationContext都继承自AbstractApplicationContext,如ClassPathXmlApplicationContext、XmlWebApplicationContext等。所以自动拥有这个功能。
b) ApplicationContext自动到本地容器里找一个名字为”“的ApplicationEventMulticaster实现,如果没有自己new一个SimpleApplicationEventMulticaster。其中SimpleApplicationEventMulticaster发布事件的代码如下:
public void multicastEvent(final ApplicationEvent event) {
for (final ApplicationListener listener : getApplicationListeners(event)) {
Executor executor = getTaskExecutor();
if (executor != null) {
executor.execute(new Runnable() {
public void run() {
listener.onApplicationEvent(event);
}
});
}
else {
listener.onApplicationEvent(event);
}
}
}
大家可以看到如果给它一个executor(java.util.concurrent.Executor),它就可以异步支持发布事件了。否则就是通过发送。
所以我们发送事件只需要通过ApplicationContext.publishEvent即可,没必要再创建自己的实现了。除非有必要。
3)监听者,具体实现者: ApplicationListener, 其继承自JDK的EventListener,JDK要求所有监听器将继承它;
ApplicationListener接口:
public interface ApplicationListener<E extends ApplicationEvent> extends EventListener {
void onApplicationEvent(E event);
}
其只提供了onApplicationEvent方法,我们需要在该方法实现内部判断事件类型来处理,也没有提供按顺序触发监听器的语义,所以Spring提供了另一个接口,SmartApplicationListener:
public interface SmartApplicationListener extends ApplicationListener<ApplicationEvent>, Ordered {
//支持的事件类型
boolean supportsEventType(Class<? extends ApplicationEvent> var1);
//支持的参数类型
default boolean supportsSourceType(@Nullable Class<?> sourceType) {
return true;
}
//优先级的大小
default int getOrder() {
return 2147483647;
}
}
时光匆匆不留人,望你我皆有所收获。
从spring框架中的事件驱动模型出发,优化实际应用开发代码的更多相关文章
- 再析在spring框架中解决多数据源的问题
在前面我写了<如何在spring框架中解决多数据源的问题>,通过设计模式中的Decorator模式在spring框架中解决多数据源的问题,得到了许多网友的关注.在与网友探讨该问题的过程中, ...
- Spring框架中 配置c3p0连接池 完成对数据库的访问
开发准备: 1.导入jar包: ioc基本jar jdbcTemplate基本jar c3p0基本jar 别忘了mysql数据库驱动jar 原始程序代码:不使用配置文件方式(IOC)生成访问数据库对象 ...
- Spring框架中ModelAndView、Model、ModelMap区别
原文地址:http://www.cnblogs.com/google4y/p/3421017.html SPRING框架中ModelAndView.Model.ModelMap区别 注意:如果方法 ...
- Spring框架中的定时器 使用和配置
Spring框架中的定时器 如何使用和配置 转载自:<Spring框架中的定时器 如何使用和配置>https://www.cnblogs.com/longqingyang/p/554543 ...
- 细说shiro之五:在spring框架中集成shiro
官网:https://shiro.apache.org/ 1. 下载在Maven项目中的依赖配置如下: <!-- shiro配置 --> <dependency> <gr ...
- 【Spring】8、Spring框架中的单例Beans是线程安全的么
看到这样一个问题:spring框架中的单例Beans是线程安全的么? Spring框架并没有对单例bean进行任何多线程的封装处理.关于单例bean的线程安全和并发问题需要开发者自行去搞定.但实际上, ...
- Spring5源码解析-Spring框架中的单例和原型bean
Spring5源码解析-Spring框架中的单例和原型bean 最近一直有问我单例和原型bean的一些原理性问题,这里就开一篇来说说的 通过Spring中的依赖注入极大方便了我们的开发.在xml通过& ...
- Spring框架中IoC(控制反转)的原理(转)
原文链接:Spring框架中IoC(控制反转)的原理 一.IoC的基础知识以及原理: 1.IoC理论的背景:在采用面向对象方法设计的软件系统中,底层实现都是由N个对象组成的,所有的对象通过彼此的合作, ...
- spring框架中的@Import注解
spring框架中的@Import注解 Spring框架中的@Import注解 在之前的文章中,作者介绍了Spring JavaConfig. 这是除了使用传统的XML文件之外,spring带来的新的 ...
随机推荐
- SpringBoot自定义拦截器实现IP白名单功能
SpringBoot自定义拦截器实现IP白名单功能 转载请注明源地址:http://www.cnblogs.com/funnyzpc/p/8993331.html 首先,相关功能已经上线了,且先让我先 ...
- 使用FluentScheduler和IIS预加载在asp.net中实现定时任务管理
FluentScheduler介绍 github地址:https://github.com/fluentscheduler/FluentScheduler FluentScheduler是一个简单的任 ...
- mysql中如何处理字符
concat函数 使用方法: CONCAT(str1,str2,…) 返回结果为连接参数产生的字符串.如有任何一个参数为NULL ,则返回值为 NULL. 注意: 如果所有参数均为非二进制字符串,则结 ...
- 对混合数值,字符,null的字段进行排序
今天有个需求是进行排序. 这一列值是字符串类型的, 但是里面有数值型 比如"1" 和null类型的. 实现效果是需要 数值型的先按照数值的方式先排,然后字符串按照字符传排,最后 ...
- oracle中数据类型对应java类型
地址: http://otndnld.Oracle.co.jp/document/products/oracle10g/102/doc_cd/Java.102/B19275-03/datacc.htm ...
- yii2.0 集成/引入第三方sdk
首先下载自己要使用的sdk包放到vendor文件夹下面:我以接入ping++为例子如下: 然后在入口文件出引入文件的配置文件: 下面就是在控制器使用了: 下面就可以根据自己要使用的的文件以及方法正常调 ...
- js定时器让动画隔秒运动
现有一个需求,宝箱隔几秒动一次,抓住用户眼球,自己写了个 doem.
- Nginx 入门学习教程
昨天听一个前同事说他们公司老大让他去研究下关于Nginx 方面的知识,我想了下Nginx 在如今的开发技术栈中应该会很大可能会用到,所以写篇博文记录总结下官网学习教程吧. 1. 什么是Nginx? 我 ...
- BloomFilter——大规模数据处理利器
Bloom Filter是由Bloom在1970年提出的一种多哈希函数映射的快速查找算法.通常应用在一些需要快速判断某个元素是否属于集合,但是并不严格要求100%正确的场合. 一.实例 为了说明Blo ...
- driver匹配元素定位用法大全
# -*- coding:utf-8 -*- from selenium import webdriver from selenium.webdriver.common.by import By fr ...