Java設計模式---ChainOfResponsibility責任鏈模式

来源:https://www.cnblogs.com/dddyyy/archive/2018/11/28/10032183.html
-Advertisement-
Play Games

參考於 : 大話設計模式 馬士兵設計模式視頻 代碼參考於馬士兵設計模式視頻 寫在開頭:職責鏈模式:使多個對象都有機會處理請求,從而避免請求的發送者和接收者之間的耦合關係 圖來自大話設計模式,下麵我的代碼中,Clien是t依賴於Handler1和Handler2的,不過可以使用配置文件或者直接給Fil ...


參考於 :

  大話設計模式

  馬士兵設計模式視頻

  代碼參考於馬士兵設計模式視頻

  寫在開頭:職責鏈模式:使多個對象都有機會處理請求,從而避免請求的發送者和接收者之間的耦合關係

  圖來自大話設計模式,下麵我的代碼中,Clien是t依賴於Handler1和Handler2的,不過可以使用配置文件或者直接給Filter集合初始化來解決這種依賴。

  

 

1.場景

  在網上評論一句話,往往會經過一系列的處理,有沒有敏感詞之類,現在我們來模擬一下。

  把<html>,o.o,和諧

  換成 [html],^v^,/*河蟹*/

2.不使用職責鏈模式

  

package com.dingyu.ChainOfResponsibility;

/**
 * 重點在於模式,故邏輯暫時不考慮
 * 
 * @author dingyu
 *
 */
public class Client01 {
    public static void main(String[] args) {
        String s = "<html>,o.o,和諧";
        s = s.replace("<", "[").replace(">", "]").replace("和諧", "/*河蟹*/").replace("o.o", "^v^");
        System.out.println(s);
    }
}

  缺點:過濾無法復用,無法記錄過濾順序。

3.使用職責鏈模式

  

package com.dingyu.ChainOfResponsibility;
/**
 * 過濾器,doFilter處理msg字元串
 * @author dingyu
 *
 */
public interface Filter {
    public String doFilter(String msg);
}
package com.dingyu.ChainOfResponsibility;

/**
 * 處理html符號
 * 測試用的,邏輯不是很嚴謹
 * @author dingyu
 *
 */
public class HTMLFilter implements Filter {

    @Override
    public String doFilter(String msg) {
        return msg.replace("<", "[").replace(">", "]");
    }

}
package com.dingyu.ChainOfResponsibility;
/**
 * 過濾敏感辭彙
 * @author dingyu
 *
 */
public class SensitiveWordFilter implements Filter {

    @Override
    public String doFilter(String msg) {
        return msg.replace("和諧", "/*河蟹*/");
    }

}
package com.dingyu.ChainOfResponsibility;
/**
 * 處理符號
 * @author dingyu
 *
 */
public class SymbolFilter implements Filter {

    @Override
    public String doFilter(String msg) {
        return msg.replace("o.o", "^v^");
    }

}
package com.dingyu.ChainOfResponsibility;

import java.util.ArrayList;
import java.util.List;

public class Client {
    private static List<Filter> filters = new ArrayList<Filter>();
    private static int index = 0;

    public static void main(String[] args) {
        String s = "<html>,o.o,和諧";
        filters.add(new HTMLFilter());
        filters.add(new SymbolFilter());
        filters.add(new SensitiveWordFilter());
        for (Filter filter : filters) {
            s = filter.doFilter(s);
        }
        System.out.println(s);
    }
}

  雖然使用職責鏈模式,但仍然有缺點,上面的順序是先HTML,然後Symbol,最後SensitiveWord,這三個構成一個過濾鏈條,如果有一天我需要把另一個過濾鏈條插入到這根鏈條中間,實現起來很麻煩。

4.改進職責鏈模式

  

package com.dingyu.ChainOfResponsibility;

import java.util.ArrayList;
import java.util.List;
/**
 * 
 * @author dingyu
 *
 */
public class FilterChain implements Filter {

    private List<Filter> filters = new ArrayList<Filter>();

    public void add(Filter filter) {
        filters.add(filter);
    }

    public List<Filter> getFilters() {
        return filters;
    }

    @Override
    public String doFilter(String msg) {
        for (Filter filter : filters) {
            msg = filter.doFilter(msg);
        }
        return msg;
    }

}
package com.dingyu.ChainOfResponsibility;

import java.util.ArrayList;
import java.util.List;

public class Client {
//    private static List<Filter> filters = new ArrayList<Filter>();

    public static void main(String[] args) {
        String s = "<html>,o.o,和諧";
        // 鏈條1
        FilterChain chain1 = new FilterChain();
        chain1.add(new HTMLFilter());
        // 鏈條2
        FilterChain chain2 = new FilterChain();
        chain2.add(new HTMLFilter());
        chain2.add(new SensitiveWordFilter());
        // 鏈條2插到鏈條1後
        chain1.add(chain2);
        chain1.add(new SymbolFilter());
        s = chain1.doFilter(s);
        System.out.println(s);
        // filters.add(new HTMLFilter());
        // filters.add(new SymbolFilter());
        // filters.add(new SensitiveWordFilter());
        // for (Filter filter : filters) {
        // s = filter.doFilter(s);
        // }
        // System.out.println(s);
    }
}

  建議debug , eclipse快捷鍵

5. 職責鏈實現雙向過濾  

  思路類似於遞歸,建議使用debug一步步調試。

package com.dingyu.ChainOfResponsibility;

/**
 * 過濾器,doFilter處理msg字元串
 * 
 * @author dingyu
 *
 */
public interface Filter {
    // public String doFilter(String msg);
    public void doFilter(Request request, Reponse reponse, FilterChain filterChain);
}
package com.dingyu.ChainOfResponsibility;

/**
 * 處理html符號 測試用的,邏輯不是很嚴謹
 * 
 * @author dingyu
 *
 */
public class HTMLFilter implements Filter {

    @Override
    public void doFilter(Request request, Reponse reponse, FilterChain filterChain) {
        request.getRequestMsg().replace("<", "[").replace(">", "]");
        filterChain.doFilter(request, reponse, filterChain);
        reponse.setReponseMsg(reponse.getReponseMsg() + "-----HTMLFilter");
    }

    // @Override
    // public String doFilter(String msg) {
    // return msg.replace("<", "[").replace(">", "]");
    // }

}
package com.dingyu.ChainOfResponsibility;

/**
 * 過濾敏感辭彙
 * 
 * @author dingyu
 *
 */
public class SensitiveWordFilter implements Filter {

    @Override
    public void doFilter(Request request, Reponse reponse, FilterChain filterChain) {
        request.getRequestMsg().replace("和諧", "/*河蟹*/");
        filterChain.doFilter(request, reponse, filterChain);
        reponse.setReponseMsg(reponse.getReponseMsg() + "-----SensitiveWordFilter");
    }

    // @Override
    // public String doFilter(String msg) {
    // return msg.replace("和諧", "/*河蟹*/");
    // }

}
package com.dingyu.ChainOfResponsibility;

/**
 * 處理符號
 * 
 * @author dingyu
 *
 */
public class SymbolFilter implements Filter {

    @Override
    public void doFilter(Request request, Reponse reponse, FilterChain filterChain) {
        request.getRequestMsg().replace("o.o", "^v^");
        filterChain.doFilter(request, reponse, filterChain);
        reponse.setReponseMsg(reponse.getReponseMsg() + "-----SymbolFilter");
    }

    // @Override
    // public String doFilter(String msg) {
    // return msg.replace("o.o", "^v^");
    // }

}
package com.dingyu.ChainOfResponsibility;

import java.util.ArrayList;
import java.util.List;

/**
 * 
 * @author dingyu
 *
 */
public class FilterChain implements Filter {

    private List<Filter> filters = new ArrayList<Filter>();
    private int index=-1;

    public void add(Filter filter) {
        filters.add(filter);
    }

    public List<Filter> getFilters() {
        return filters;
    }

    // @Override
    // public String doFilter(String msg) {
    // for (Filter filter : filters) {
    // msg = filter.doFilter(msg);
    // }
    // return msg;
    // }

    @Override
    public void doFilter(Request request, Reponse reponse, FilterChain filterChain) {
        if (index == filters.size()-1)
            return;
        index++;
        filters.get(index).doFilter(request, reponse, filterChain);
        
    }

}
package com.dingyu.ChainOfResponsibility;

public class Client03 {
    public static void main(String[] args) {
        Request request = new Request();
        Reponse reponse = new Reponse();
        request.setRequestMsg("<html>,o.o,和諧");
        reponse.setReponseMsg("hahahahaha");
        FilterChain chain = new FilterChain();
        chain.add(new HTMLFilter());
        chain.add(new SensitiveWordFilter());
        chain.add(new SymbolFilter());
        chain.doFilter(request, reponse, chain);
        System.out.println(request.getRequestMsg());
        System.out.println(reponse.getReponseMsg());
    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • nonatomic : 非原子屬性 atomic : 原子屬性 如果不寫關鍵字 那麼預設就是 原子屬性 - 多線程寫入屬性時,保證同一時間只有一個線程能夠執行寫入操作 - 單(線程)寫多(線程)讀線程技術,同樣有可能出現"臟數據",重新讀一下 - 性能較慢 線程安全 在多個線程進行讀寫操作的時候,仍 ...
  • 單例模式是設計模式中比較常見簡單的一種,典型雙重檢測寫法如下: 接下來對該寫法進行分析,為何這樣寫? 一、為何要同步: 多線程情況下,若是A線程調用getInstance,發現instance為null,那麼它會開始創建實例,如果此時CPU發生時間片切換,線程B開始執行,調用getInstance, ...
  • 數據持久化,也就是把數據保存到磁碟,以後可以再讀取出來使用(也可以再次更改或刪除)。很多場景需要數據持久化,比如為了減輕伺服器的訪問與存儲壓力,客戶端需要在本地做一些數據持久化的工作。iOS的數據持久化,有幾種方式,包括:自定義格式的文件、plistCoreData、FMDB等等。這裡記錄基於Cor... ...
  • 前言 在 "上一篇" 中我們學習了行為型模式的備忘錄模式(Memento Pattern)和狀態模式(Memento Pattern)。本篇則來學習下行為型模式的最後兩個模式,觀察者模式(Observer Pattern)和空對象模式模式(NullObject Pattern)。 觀察者模式 簡介 ...
  • "迭代器模式·原文地址" "更多《設計模式系列教程》" "更多免費教程" 博主按:《每天一個設計模式》旨在初步領會設計模式的精髓,目前採用 ( 靠這吃飯 )和 ( 純粹喜歡 )兩種語言實現。誠然,每種設計模式都有多種實現方式,但此小冊只記錄最直截了當的實現方式 :) 0. 項目地址 迭代器模式源碼: ...
  • 單例模式 介紹 模式:創建型 意圖:保證一個類只有一個實例,並提供一個訪問它的全局訪問點 解決:一個全局使用的類頻繁地創建與銷毀 場景: 唯一序列號 web中的計數器 I/O與資料庫的連接 …… 唯一序列號 web中的計數器 I/O與資料庫的連接 …… 實現方式 餓漢式 :靜態載入,線程安全 餓漢式 ...
  • 1. 簡單工廠 1. 你開了一家披薩店,點披薩的方法可能是這樣: 可以看到,每當你想增加一種披薩類型,就要修改代碼,添加一種if else條件.當有多個系統存在orderPizza的需求時,每個系統都要同時修改他們的代碼.因此,需要將這種實例化具體對象的代碼封裝起來. 這就是簡單工廠方法,他不算一種 ...
  • 迭代器模式(Iterator Pattern)是最常被使用的幾個模式之一,被廣泛地應用到Java的API中。 定義:提供一種方法訪問一個容器對象中各個元素,而又不需暴露該對象的內部細節。 類圖如下所示。 迭代器模式有以下4個角色。 抽象迭代器(Iterator)角色:負責定義訪問和遍歷元素的介面。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...