码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式—责任链模式

时间:2015-05-22 09:48:07      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:设计模式

责任链模式的英文是:Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along the chain util an object handle it. 意思是:使多个对象都有机会处理请求,从而避免了请求的发送者和接受者之间的耦合关系。将这些对象连成一条链,并沿着这条链传递该请求,直到有对象处理它为止。

责任链模式的两个角色:

抽象处理者角色(Handler):定义一个处理请求的接口或抽象类,和一个后继连接。

具体处理者角色(ConcreteHandle):该角色接到请求后,可以选择将请求处理掉或者将请求传递给下一个处理者。

责任链模式的类图:

技术分享

责任链模式各个角色对应的类:

抽象处理者角色:

package com.zz.chain;
/**
 * 抽象处理者
 * Copyright 2015年5月21日
 * created by txxs
 * all right reserved
 */
public abstract class Handler {
	private Handler nextHandler;
	//每个处理者都必须对请求做出处理
	public final Response handleMessage(Request request){
		Response response = null;
		//判断是不是自己的处理级别
		if(this.getHandlerLevel().equals(request.getRequestLevel())){
			response = this.echo(request);
		}else{
			//不属于自己的处理级别,看是否有下一个处理者
			if(this.nextHandler != null){
				response = this.nextHandler.handleMessage(request);
			}else{
				//没有适当的处理者,容错,业务自行处理
			}
		}
		return response;
		
	}
	//设置下一个处理者是谁
	public void setNext(Handler handler){
		this.nextHandler = handler;
	}
	//每个处理者都有一个处理级别
	protected abstract Level getHandlerLevel();
	//每个处理者都必须实现处理任务
	protected abstract Response echo(Request request);
}
具体处理者角色:

package com.zz.chain;
/**
 * 具体处理者
 * Copyright 2015年5月21日
 * created by txxs
 * all right reserved
 */
public class ConcreteHandle extends Handler {

	@Override
	protected Level getHandlerLevel() {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	protected Response echo(Request request) {
		// TODO Auto-generated method stub
		return null;
	}

}

责任链模式的优点:

1、责任链模式将请求和处理分开,请求者不知道是谁处理的,处理者可以不用知道请求的全貌。

2、提高系统的灵活性。

责任链模式的应用模式:

1、一个请求需要一系列的处理工作

2、业务流的处理


设计模式—责任链模式

标签:设计模式

原文地址:http://blog.csdn.net/maoyeqiu/article/details/45898141

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!