背景

C# 版本库 MediatR 是一个中介者模式实现类库,其核心是一个中介 者模式的.NET实现,其目的是消息发送和消息处理的解耦。它支持单播和多播形式使用同步或异步的模式来发布消息,创建和帧听事件。

java中没有找到类似类库,在对MediatR源码阅读中,发现其主要思路是借助IOC获取Request与Handler对应关系并进行处理。

中介者模式

中介者模式:用一个中介对象封装一系列的对象交互,中介者使各对象不需要显示地相互作用,从而使耦合松散,而且可以独立地改变他们之间的交互。

使用中介模式,对象之间的交互将封装在中介对象中,对象不再直接交互(解耦),而是通过中介进行交互,这减少了对象之间的依赖性,从而减少了耦合。

应用

单播消息传输

单播消息传输,也就是一对第一的消息传递,一个消息对应一个消息处理,通过 IReust 抽象单播消息,使用 IRequestHandler  进行消息处理


@ExtendWith(SpringExtension.class)
@Import(
value = {
Mediator.class,
PingPongTest.PingHandler.class,
}
)
public class PingPongTest { @Autowired
IMediator mediator; @Test
public void should() {
String send = mediator.send(new Ping()); assertThat(send).isNotNull();
assertThat(send).isEqualTo("Pong");
} public static class Ping implements IRequest<String> {
} public static class PingHandler implements IRequestHandler<Ping, String> {
@Override
public String handle(Ping request) {
return "Pong";
}
} }

多播消息传输

多播消息传输,是一对多的消息传递,一个消息对应多个消息处理,通过 INotification 抽象多播消息,使用 INotificationHanlder 进行消息处理


@ExtendWith(SpringExtension.class)
@Import(
value = {
Mediator.class,
PingNoticeTests.Pong1.class,
PingNoticeTests.Pong2.class,
}
)
public class PingNoticeTests { @Autowired
IMediator mediator; @Autowired
Pong1 pong1; @Autowired
Pong2 pong2; @Test
public void should() {
mediator.publish(new Ping()); assertThat(pong1.getCode()).isEqualTo("Pon1");
assertThat(pong2.getCode()).isEqualTo("Pon2");
} public static class Ping implements INotification {
} public static class Pong1 implements INotificationHandler<Ping> { private String code; public String getCode() {
return code;
} @Override
public void handle(Ping notification) {
this.code = "Pon1";
}
} public static class Pong2 implements INotificationHandler<Ping> { private String code; public String getCode() {
return code;
} @Override
public void handle(Ping notification) {
this.code = "Pon2";
}
} }

实现

核心实现

其主要点是从Spring的ApplicationContext中获取相关接口bean,然会执行bean方法。

核心方法有两个:public(多播)和send(单播)。

借助ResolvableType类型构造解析bean信息,得到信息后从spring中获取对象实例。


/**
* 中介者实现类
* <p>
* 依赖 ApplicationContext
*/
@Component
public class Mediator implements IMediator, ApplicationContextAware { private ApplicationContext context; /**
* 发布同步
* <p>
* 根据通知类型和INotificationHandler,从ApplicationContext获取Handler的BeanNames,
* 将 BeanNames 转化为 INotificationHandler 的实例,每个实例调用一次handler
*
* @param notification 通知内容
* @param <TNotification> 通知类型
*/
@Override
public <TNotification extends INotification> void publish(TNotification notification) { ResolvableType handlerType = ResolvableType.forClassWithGenerics(
INotificationHandler.class, notification.getClass()); String[] beanNamesForType = this.context.getBeanNamesForType(handlerType);
List<INotificationHandler<TNotification>> list = new ArrayList<>();
for (String beanBane :
beanNamesForType) {
list.add((INotificationHandler<TNotification>) this.context.getBean(beanBane));
}
list.forEach(h -> h.handle(notification));
} /**
* 发送求取
* <p>
* 根据request类型,获取到response类型,
* 根据IRequestHandler、request类型、response类型从ApplicationContext获取
* IRequestHandler实例列表,取第一个实例执行handler方法。
* <p>
* <p>
* 如果为找到handler实例,抛出NoRequestHandlerException异常
*
* @param request 请求
* @param <TResponse> 响应类型
* @return 响应结果
*/
@Override
public <TResponse> TResponse send(IRequest<TResponse> request) {
Type[] genericInterfaces = request.getClass().getGenericInterfaces(); Type responseType = null; for (Type type : genericInterfaces) {
if ((type instanceof ParameterizedType)) {
ParameterizedType parameterizedType = (ParameterizedType) type;
if (!parameterizedType.getRawType().equals(IRequest.class)) {
continue;
}
responseType = parameterizedType.getActualTypeArguments()[0];
break;
}
} if (responseType == null) {
// 抛出异常
throw new NoRequestHandlerException(request.getClass());
} Class<?> requestClass = request.getClass();
Class<?> responseClass = (Class<?>) responseType; ResolvableType handlerType = ResolvableType.forClassWithGenerics(
IRequestHandler.class,
requestClass,
responseClass); String[] beanNamesForType = this.context.getBeanNamesForType(handlerType);
List<IRequestHandler<IRequest<TResponse>, TResponse>> list = new ArrayList<>();
for (String beanBane :
beanNamesForType) {
list.add((IRequestHandler<IRequest<TResponse>, TResponse>) this.context.getBean(beanBane));
} if (list.isEmpty()) {
throw new NoRequestHandlerException(request.getClass());
} return list.stream()
.findFirst()
.map(h -> h.handle(request))
.orElseThrow(() -> new NoRequestHandlerException(request.getClass()));
} @Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.context = applicationContext;
}
}
public interface IBaseRequest {
}
多播接口
public interface INotification {
}
单播接口
public interface IRequest<TResponse> extends IBaseRequest {
}
public interface IPublisher {
<TNotification extends INotification> void publish(TNotification notification);
}
public interface ISender {
<TResponse> TResponse send(IRequest<TResponse> request);
}
public interface IMediator extends ISender, IPublisher {
}
多播处理接口
public interface INotificationHandler<TNotification extends INotification> {
void handle(TNotification notification);
}
单播处理接口
public interface IRequestHandler<TRequest extends IRequest<TResponse>, TResponse> {
TResponse handle(TRequest request);
}
public abstract class AbsRequestHandler<TRequest extends IRequest<TResponse>, TResponse>
implements IRequestHandler<TRequest, TResponse> {
@Override
public abstract TResponse handle(TRequest request);
}
public abstract class AbsNotificationHandler<TNotification extends INotification>
implements INotificationHandler<TNotification> {
@Override
public abstract void handle(TNotification notification);
}
public class Unit implements Comparable<Unit> {
public static final Unit VALUE = new Unit(); private Unit() {
} @Override
public boolean equals(Object obj) {
return true;
} @Override
public int hashCode() {
return 0;
} @Override
public String toString() {
return "()";
} @Override
public int compareTo(@NotNull Unit o) {
return 0;
}
}
public interface IUnitRequest extends IRequest<Unit> {
}
public class MediatorException extends RuntimeException {
}
@Getter
public class NoRequestHandlerException extends MediatorException {
private Class<?> requestClass; public NoRequestHandlerException(
Class<?> requestClass
) {
this.requestClass = requestClass;
}
}

应用场景

mediatr 是一种进程内消息传递机制,使用泛型支持消息的只能调度,其核心是 消息解耦 ,基于MediatR可以实现CQRS/EventBus等。

解除构造函数的依赖注入

public class DashboardController(
ICustomerRepository customerRepository,
IOrderService orderService,
ICustomerHistoryRepository historyRepository,
IOrderRepository orderRepository,
IProductRespoitory productRespoitory,
IRelatedProductsRepository relatedProductsRepository,
ISupportService supportService,
ILog logge
) { }

借助 Mediator,仅需构造注入ImediatR即可

public class DashboardController(
IMediator
) { }

service 循环依赖,使用mediatr 进行依赖解耦,并使用mediatr进行消息传递

两个service类和接口如下


public static interface IDemoAService {
String hello(); String helloWithB();
} public static interface IDemoBService {
String hello(); String helloWithA();
} public static class DemoAService implements IDemoAService {
private final IDemoBService bService; public DemoAService(IDemoBService aService) {
this.bService = aService;
} @Override
public String hello() {
return this.bService.helloWithA();
} @Override
public String helloWithB() {
return "call A in B";
}
} public static class DemoBService implements IDemoBService {
private final IDemoAService aService; public DemoBService(IDemoAService aService) {
this.aService = aService;
} @Override
public String hello() {
return this.aService.helloWithB();
} @Override
public String helloWithA() {
return "call B in A";
}
}

此时,如果通过构造函数或属性注入(@Autowird),程序在运行时会报一下错误, 提示检测是否包括循环引用

使用 mediatr 解耦循环依赖

使用mediatr的service如下,在service构造函数注 IMediator ,并实现 IRequestHandler 接口


public static class DemoAService implements IDemoAService, IRequestHandler<RequestAService, String> {
//private final IDemoBService bService; private final IMediator mediator; public DemoAService(IMediator mediator) {
this.mediator = mediator;
} @Override
public String hello() {
return this.mediator.send(new RequestBService());
} @Override
public String helloWithB() {
return "call A in B";
} @Override
public String handle(RequestAService request) {
return this.helloWithB();
}
} public static class DemoBService implements IDemoBService, IRequestHandler<RequestBService, String> {
//private final IDemoAService aService;
private final IMediator mediator; public DemoBService(IMediator mediator) {
this.mediator = mediator;
} @Override
public String hello() {
return this.mediator.send(new RequestAService());
} @Override
public String helloWithA() {
return "call B in A";
} @Override
public String handle(RequestBService request) {
return this.helloWithA();
}
} public static class RequestAService implements IRequest<String> {
} public static class RequestBService implements IRequest<String> {
}

测试代码如下


@ExtendWith(SpringExtension.class)
@Import(
value = {
Mediator.class,
ServiceCycTests.DemoAService.class,
ServiceCycTests.DemoBService.class,
}
)
public class ServiceCycTests { @Autowired
IDemoAService aService; @Autowired
IDemoBService bService; @Test
public void should() {
String a = aService.hello();
assertThat(a).isEqualTo("call B in A"); String b = bService.hello();
assertThat(b).isEqualTo("call A in B");
}
}

测试结果

关注我的公众号,一起探索新知识新技术

Spring 版MediatR--中介者模式实现库的更多相关文章

  1. [译]ASP.NET Core中使用MediatR实现命令和中介者模式

    作者:依乐祝 原文地址:https://www.cnblogs.com/yilezhu/p/9866068.html 在本文中,我将解释命令模式,以及如何利用基于命令模式的第三方库来实现它们,以及如何 ...

  2. NET Core中使用MediatR实现命令和中介者模式

    NET Core中使用MediatR实现命令和中介者模式 https://www.cnblogs.com/yilezhu/p/9866068.html 在本文中,我将解释命令模式,以及如何利用基于命令 ...

  3. 在 ASP.NET Core 项目中使用 MediatR 实现中介者模式

    一.前言  最近有在看 DDD 的相关资料以及微软的 eShopOnContainers 这个项目中基于 DDD 的架构设计,在 Ordering 这个示例服务中,可以看到各层之间的代码调用与我们之前 ...

  4. 一起来学习.net core程序使用中介者模式:MediatR插件

    中介者模式是一种常见的设计模式,旨再降低程序的耦合性,因为传统的三层模式层层之间需要显示的调用,必须上层依赖下层,耦合性很高,为了解耦,将所有的指令单独放在一个位置处理,其他位置均通过这个位置来间接的 ...

  5. 中介者模式及在NetCore中的使用MediatR来实现

    在现实生活中,常常会出现好多对象之间存在复杂的交互关系,这种交互关系常常是"网状结构",它要求每个对象都必须知道它需要交互的对象.例如,每个人必须记住他(她)所有朋友的电话:而且, ...

  6. 中介者模式c#(媒婆版)

    using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace 中介者模式{  ...

  7. C#设计模式之12:中介者模式

    中介者模式 在asp.net core中实现进程内的CQRS时用mediatR是非常方便的,定义command,然后定义commandhandler,或者notification和notificati ...

  8. Java设计模式-中介者模式(Mediator)

    中介者模式也是用来降低类类之间的耦合的,因为如果类类之间有依赖关系的话,不利于功能的拓展和维护,因为只要修改一个对象,其它关联的对象都得进行修改.如果使用中介者模式,只需关心和Mediator类的关系 ...

  9. 24种设计模式--中介者模式【Mediator Pattern】

    各位好,大家都是来自五湖四海,都要生存,于是都找了个靠山——公司,给你发薪水的地方,那公司就要想尽办法盈利赚钱,盈利方法则不尽相同,但是作为公司都有相同三个环节:采购.销售和库存,这个怎么说呢?比如一 ...

随机推荐

  1. element UI el-autocomplete 带输入建议的输入框

    项目需求:需要用户在输入框中输入公司 全名    但是为了避免用户输入不全   需要做一个带输入建议的输入框 参考:https://www.jianshu.com/p/de922caf337c

  2. (十二)docker --privileged

    1. privileged参数作用 --privileged Give extended privileges to this container 大约在0.6版,privileged被引入docke ...

  3. gateway调用Fegin失败问题解决

    起因 新项目用的是springcloud2.0,网关用gateway替换了zuul. gateway动态路由跟zuul有本质上的区别.这就涉及到webflux这一套大东东了.简单来说,gateway是 ...

  4. Kubernetes 普及系列:容器基础入门

    随着云原生时代的来临,云以及分布式计算已经是时下最受欢迎的技术之一了.其中 Docker 作为最知名的容器平台,到底有着怎样的魅力来让其无人不知无人不晓?废话不多说,让我们开始逐层掀开容器技术的神秘面 ...

  5. 1.4.15- HTML标签之链接标签

    代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF ...

  6. 【JDK8】JDK 8 中Stream流中的去重的方法

    JDK 8 中Stream流中去重的方法 1.简单的去重,可以使用distinct()方法去重,该方法是通过比较equals和hashcode值去去重, 2.复杂的去重, 例如,在一个JavaBean ...

  7. MetaWeblog访问地址

    MetaWeblog访问地址 https://rpc.cnblogs.com/metaweblog/csnd

  8. Python中对序列数据的汇总(collections模块)

    目录 Counter most_common 对于序列如字符串str.列表list和tuple可以统计里面数据出现的次数.我们使用的是 collections 模块. collections模块的常用 ...

  9. 异步访问技术Ajax(XMLHttpRequest)

    目录 AJAX XMLHttpRequest Ajax向服务器发送请求 Ajax接收服务器响应 AJAX - onreadystatechange 事件 使用 Callback 函数 一次Ajax请求 ...

  10. POJ2308连连看dfs+bfs+优化

    DFS+BFS+MAP+剪枝 题意:       就是给你一个10*10的连连看状态,然后问你最后能不能全部消没? 思路:      首先要明确这是一个搜索题目,还有就是关键的一点就是连连看这个游戏是 ...