`

《有些模式》- 责任链(简单模拟2)

 
阅读更多
package com.macrotea.responzchain.entity;

public class Request {
	private String content;

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = content;
	}
	

}

 

 

 

package com.macrotea.responzchain.entity;

public class Response {
	private String reply;

	public String getReply() {
		return reply;
	}

	public void setReply(String reply) {
		this.reply = reply;
	}
}

 

 

 

package com.macrotea.responzchain.interfazz;

import com.macrotea.responzchain.chain.FilterChain;
import com.macrotea.responzchain.entity.Request;
import com.macrotea.responzchain.entity.Response;

public interface Filter {
	public void doFilter(Request request,Response response,FilterChain chain);
}

 

 

 

package com.macrotea.responzchain.impl;

import com.macrotea.responzchain.chain.FilterChain;
import com.macrotea.responzchain.entity.Request;
import com.macrotea.responzchain.entity.Response;
import com.macrotea.responzchain.interfazz.Filter;

public class HTMLFilter implements Filter {

	@Override
	public void doFilter(Request request, Response response,FilterChain chain) {
		request.setContent(request.getContent()+"-->HTMLFilter");
		/*让链调用下一个过滤器*/
		chain.doFilter(request, response,chain);
		response.setReply(response.getReply()+"-->HTMLFilter");
	}

}

 

 

 

package com.macrotea.responzchain.impl;

import com.macrotea.responzchain.chain.FilterChain;
import com.macrotea.responzchain.entity.Request;
import com.macrotea.responzchain.entity.Response;
import com.macrotea.responzchain.interfazz.Filter;

public class HarmonyFilter implements Filter {

	@Override
	public void doFilter(Request request, Response response, FilterChain chain) {
		request.setContent(request.getContent()+"-->HarmonyFilter");
		/*让链调用下一个过滤器*/
		chain.doFilter(request, response,chain);
		response.setReply(response.getReply()+"-->HarmonyFilter");
	}

}

 

 

 

package com.macrotea.responzchain.chain;

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

import com.macrotea.responzchain.entity.Request;
import com.macrotea.responzchain.entity.Response;
import com.macrotea.responzchain.interfazz.Filter;

public class FilterChain implements Filter{
	private List<Filter> filters;
	private int index=0;

	public FilterChain() {
		super();
		filters = new ArrayList<Filter>();
	}

	public FilterChain appendFilter(Filter filter) {
		filters.add(filter);
		return this;
	}

	public FilterChain removeFilter(Filter filter) {
		filters.remove(filter);
		return this;
	}

	@Override
	public void doFilter(Request request, Response response,FilterChain chain) {
		if(index==filters.size())return;
		Filter filter=filters.get(index);
		 index++;
		 /*具体实现类的调用*/
		filter.doFilter(request, response, chain);
	}
}

 

 

package com.macrotea.responzchain.test;

import com.macrotea.responzchain.chain.FilterChain;
import com.macrotea.responzchain.entity.Request;
import com.macrotea.responzchain.entity.Response;
import com.macrotea.responzchain.impl.HTMLFilter;
import com.macrotea.responzchain.impl.HarmonyFilter;


public class Mainer {
	public static void main(String[] args) {
		
		Request request =new Request();
		request.setContent("这个是请求的内容");
		Response response=new Response();
		response.setReply("这个是响应的内容");
		
		
		FilterChain chain=new FilterChain();
		chain.appendFilter(new HTMLFilter()).appendFilter(new HarmonyFilter());
		chain.doFilter(request, response, chain);
		
		System.out.println("经过FilterChain后请求的内容: "+request.getContent());
		System.out.println("经过FilterChain后响应的内容: "+response.getReply());
		
	}

}

 

//输出:
经过FilterChain后请求的内容: 这个是请求的内容-->HTMLFilter-->HarmonyFilter
经过FilterChain后响应的内容: 这个是响应的内容-->HarmonyFilter-->HTMLFilter

 

分享到:
评论

相关推荐

    模拟Struts责任链工作流及简单AOP实现

    下面,我们将模拟一个简单的Struts责任链和AOP实现: 1. 创建一个基础拦截器类,例如`BaseInterceptor`,实现`Interceptor`接口,定义beforeExecute()和afterExecute()方法。 2. 创建具体拦截器,如`...

    《Java设计模式》模拟试题参考答案及评分标准-刘伟(20180723).pdf

    - **简单工厂模式**(Simple Factory Pattern): 用于创建对象的实例,无需暴露创建逻辑给客户端,而是将创建的责任交给专门的工厂类。 - **建造者模式**(Builder Pattern): 用于构建复杂对象,允许用户逐步构建一...

    名为责任链或者拦截器或者过滤器的简单模拟

    以上的这些功能,通过一种名为责任链或者拦截器或者过滤器(语义上的区别而技术上没有什么区别,知道做了什么就行了)的设计模式可以实现,那么就来看看什么是责任链的设计模式。 以下内容参考北京尚学堂的马士兵...

    设计模式 -- 模仿女娲造物(入门)

    压缩包中的文件名为“ren”,这可能代表了某种与人类或者角色相关的例子,作者可能用这个例子来演示如何使用设计模式来创建和管理软件对象,如使用原型模式(Prototype)创建对象的克隆,或者使用职责链模式(Chain...

    C/C++设计模式

    - **责任链模式**:允许请求沿着处理链传递,直到被某个接收者处理。 - **迭代器模式**:提供了一种方法顺序访问集合对象。 - **外观模式**:提供一个统一的接口,用来访问子系统中的一群接口。 - **代理模式**:为...

    我们的设计模式(java)

    3. 行为型模式包括:责任链模式、解释器模式、迭代器模式、中介者模式、命令模式、观察者模式、状态模式、访问者模式和备忘录模式。 每一种模式都旨在解决特定的问题,例如: - 单例模式(Singleton Pattern)确保...

    java简易版开心农场源码-ChainOfResponsibility:责任链

    责任链设计模式 前言 对于已经工作了的小伙伴,你八成是见过"责任链"这种面向对象的设计模式的,还在上学的小伙伴也不用着急,你迟早会接触到的。本文旨在让小白同学和 不太熟悉责任链的朋友能够Swift对这一设计模式...

    C++23种设计模式一点就通

    - **模式描述**:责任链模式使得多个处理者对象有机会处理请求,从而避免请求的发送者和接收者之间的耦合关系。 - **例子**:“租房”的比喻形象地解释了责任链模式的作用。在寻找房源的过程中,客户可以向房屋中介...

    C#设计模式大全

    - **与其它模式的关系**:工厂方法模式是简单工厂模式的更高级形式,也是抽象工厂模式的基础。 - **另一个例子**:创建不同类型的数据库连接。 #### 抽象工厂(Abstract Factory)模式 抽象工厂模式是一个创建型...

    JavaScript职责链模式概述

    虽然职责链模式提供了很多优点,但也需要注意潜在的问题,如过度复杂性(链过长可能导致维护困难)、责任分配不明确(可能难以追踪请求的处理路径)以及可能导致循环引用等内存问题。 总之,JavaScript职责链模式...

    设计模式(精简)

    责任链模式使多个对象都有机会处理请求,从而避免请求的发送者和接收者之间的耦合关系。将这些对象连成一条链,并沿着这条链传递该请求,直到有一个对象处理它为止。 **应用场景:** - 有多个对象可以处理一个请求...

    深入浅出之[Head First 设计模式]

    行为型模式则关注对象间的交互和责任分配,例如观察者模式、策略模式、职责链模式等,这些模式让我们的代码更具灵活性和可调整性。 在《深入浅出之[Head First 设计模式]》中,作者通过生动的图解、有趣的比喻和...

    java多线程设计模式

    8. **责任链模式**:将多个处理步骤组织成一条链,每个处理步骤负责一部分任务,并且可以将任务传递给下一个处理步骤,常用于处理请求。 #### 四、小结 Java多线程设计模式是Java并发编程的重要组成部分,能够有效...

    信息系统监理师模拟题

    ### 信息系统监理师模拟题知识点解析 #### 一、质量体系文件 - **知识点:**典型的质量体系文件组成。 - **解析:** - **质量手册:**是组织内部质量管理系统的纲领性文件,通常包括组织的质量方针、目标以及整个...

    Thinking in Python

    - 责任链模式使得多个处理者对象有机会处理请求,从而避免请求的发送者和接收者之间的耦合关系。 ##### 第七部分:接口变更 1. **适配器模式**(第101页) - 适配器模式可以使不兼容的接口之间可以合作无间,...

Global site tag (gtag.js) - Google Analytics