MyBatis代码整洁之道之设计模式细说责任链模式优缺点

本文介绍了MyBatis中的责任链模式,通过对比简单工厂模式,阐述了责任链模式在处理MQTT消息时的优势。文章讨论了如何构建责任链,以Tomcat为例展示了其实现,并探讨了责任链模式在Spring框架中的注意事项。同时,总结了责任链模式的优缺点及其在请求处理中的应用。
摘要由CSDN通过智能技术生成

责任链模式(Chain of Responsibility Pattern)
需要了解更多可以参考这篇文章深入剖析 MyBatis 的内部设计和架构设计的实现细节

【情景模式】

在处理MQTT消息的时候,需要根据不同的Topic进行不同的处理,平时我们可以直接使用简单工厂。如下:

//消息处理接口
public interface MessageHandler {
   
    void handleMessage(String message);
}

定义具体的消息处理类:

public class Topic1Handler implements MessageHandler {
   
    @Override
    public void handleMessage(String message) {
   
        System.out.println("处理test1消息");
    }
}
public class Topic2Handler implements MessageHandler {
   

    @Override
    public void handleMessage(String message) {
   
        System.out.println("处理Test2消息");
    }
}
public class Topic3Handler implements MessageHandler {
   

    @Override
    public void handleMessage(String message) {
   
        System.out.println("处理Test3消息");
    }
}

定义简单工厂,根据不同的topic返回不同的对象:

public class MessageHandlerFactory {
   

    private static Topic1Handler topic1Handler = new Topic1Handler();

    private static Topic2Handler topic2Handler = new Topic2Handler();

    private static Topic3Handler topic3Handler = new Topic3Handler();


    public static MessageHandler createMessageHandler(String topic) {
   
        switch (topic) {
   
            case "/topic/topic1/":
                return topic1Handler;
            case "/topic/topic2/":
                return topic2Handler;
            case "/topic/topic3/":
                return topic3Handler;
            default:
                throw new UnsupportedOperationException("无法处理的topic"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值