• 什么是责任链
  • 场景
    • 反例
    • 初步改造
    • 缺点
    • 责任链改造
    • 责任链工厂改造
  • 聊聊其他

最近,我让团队内一位成员写了一个导入功能。他使用了责任链模式,代码堆的非常多,bug 也多,没有达到我预期的效果。实际上,针对导入功能,我认为模版方法更合适!为此,隔壁团队也拿出我们的案例,进行了集体 code review。
学好设计模式,且不要为了练习,强行使用!让原本100行就能实现的功能,写了 3000 行!
对错暂且不论,我们先一起看看责任链设计模式吧!

什么是责任链

「责任链模式」 是一种行为设计模式, 允许你将请求沿着处理者链进行发送。收到请求后, 每个处理者均可对请求进行处理, 或将其传递给链上的下个处理者。
责任链模式 - 图1

场景

责任链的使用场景还是比较多的

  • 多条件流程判断:权限控制
  • ERP 系统流程审批:总经理、人事经理、项目经理
  • Java 过滤器 的底层实现 Filter

如果不使用该设计模式,那么当需求有所改变时,就会使得代码臃肿或者难以维护,例如下面的例子

反例

假设现在有一个闯关游戏,进入下一关的条件是上一关的分数要高于xx

  1. 游戏一共 3 个关卡
  2. 进入第二关需要第一关的游戏得分大于等于 80
  3. 进入第三关需要第二关的游戏得分大于等于 90

那么代码可以这样写

  1. //第一关
  2. public class FirstPassHandler {
  3. public int handler(){
  4. System.out.println("第一关-->FirstPassHandler");
  5. return 80;
  6. }
  7. }
  1. //第二关
  2. public class SecondPassHandler {
  3. public int handler(){
  4. System.out.println("第二关-->SecondPassHandler");
  5. return 90;
  6. }
  7. }
  1. //第三关
  2. public class ThirdPassHandler {
  3. public int handler(){
  4. System.out.println("第三关-->ThirdPassHandler,这是最后一关啦");
  5. return 95;
  6. }
  7. }
  1. //客户端
  2. public class HandlerClient {
  3. public static void main(String[] args) {
  4. FirstPassHandler firstPassHandler = new FirstPassHandler();//第一关
  5. SecondPassHandler secondPassHandler = new SecondPassHandler();//第二关
  6. ThirdPassHandler thirdPassHandler = new ThirdPassHandler();//第三关
  7. int firstScore = firstPassHandler.handler();
  8. //第一关的分数大于等于80则进入第二关
  9. if(firstScore >= 80){
  10. int secondScore = secondPassHandler.handler();
  11. //第二关的分数大于等于90则进入第二关
  12. if(secondScore >= 90){
  13. thirdPassHandler.handler();
  14. }
  15. }
  16. }
  17. }

那么如果这个游戏有100关,我们的代码很可能就会写成这个样子

  1. if(第1关通过){
  2. // 第2关 游戏
  3. if(第2关通过){
  4. // 第3关 游戏
  5. if(第3关通过){
  6. // 第4关 游戏
  7. if(第4关通过){
  8. // 第5关 游戏
  9. if(第5关通过){
  10. // 第6关 游戏
  11. if(第6关通过){
  12. //...
  13. }
  14. }
  15. }
  16. }
  17. }
  18. }

这种代码不仅冗余,并且当我们要将某两关进行调整时会对代码非常大的改动,这种操作的风险是很高的,因此,该写法非常糟糕

初步改造

如何解决这个问题,我们可以通过链表将每一关连接起来,形成责任链的方式,第一关通过后是第二关,第二关通过后是第三关 ….,这样客户端就不需要进行多重 if 的判断了

  1. public class FirstPassHandler {
  2. /**
  3. * 第一关的下一关是 第二关
  4. */
  5. private SecondPassHandler secondPassHandler;
  6. public void setSecondPassHandler(SecondPassHandler secondPassHandler) {
  7. this.secondPassHandler = secondPassHandler;
  8. }
  9. //本关卡游戏得分
  10. private int play(){
  11. return 80;
  12. }
  13. public int handler(){
  14. System.out.println("第一关-->FirstPassHandler");
  15. if(play() >= 80){
  16. //分数>=80 并且存在下一关才进入下一关
  17. if(this.secondPassHandler != null){
  18. return this.secondPassHandler.handler();
  19. }
  20. }
  21. return 80;
  22. }
  23. }
  1. public class SecondPassHandler {
  2. /**
  3. * 第二关的下一关是 第三关
  4. */
  5. private ThirdPassHandler thirdPassHandler;
  6. public void setThirdPassHandler(ThirdPassHandler thirdPassHandler) {
  7. this.thirdPassHandler = thirdPassHandler;
  8. }
  9. //本关卡游戏得分
  10. private int play(){
  11. return 90;
  12. }
  13. public int handler(){
  14. System.out.println("第二关-->SecondPassHandler");
  15. if(play() >= 90){
  16. //分数>=90 并且存在下一关才进入下一关
  17. if(this.thirdPassHandler != null){
  18. return this.thirdPassHandler.handler();
  19. }
  20. }
  21. return 90;
  22. }
  23. }
  1. public class ThirdPassHandler {
  2. //本关卡游戏得分
  3. private int play(){
  4. return 95;
  5. }
  6. /**
  7. * 这是最后一关,因此没有下一关
  8. */
  9. public int handler(){
  10. System.out.println("第三关-->ThirdPassHandler,这是最后一关啦");
  11. return play();
  12. }
  13. }
  1. public class HandlerClient {
  2. public static void main(String[] args) {
  3. FirstPassHandler firstPassHandler = new FirstPassHandler();//第一关
  4. SecondPassHandler secondPassHandler = new SecondPassHandler();//第二关
  5. ThirdPassHandler thirdPassHandler = new ThirdPassHandler();//第三关
  6. firstPassHandler.setSecondPassHandler(secondPassHandler);//第一关的下一关是第二关
  7. secondPassHandler.setThirdPassHandler(thirdPassHandler);//第二关的下一关是第三关
  8. //说明:因为第三关是最后一关,因此没有下一关
  9. //开始调用第一关 每一个关卡是否进入下一关卡 在每个关卡中判断
  10. firstPassHandler.handler();
  11. }
  12. }

缺点

现有模式的缺点

  • 每个关卡中都有下一关的成员变量并且是不一样的,形成链很不方便
  • 代码的扩展性非常不好

    责任链改造

  • 既然每个关卡中都有下一关的成员变量并且是不一样的,那么我们可以在关卡上抽象出一个父类或者接口,然后每个具体的关卡去继承或者实现

有了思路,我们先来简单介绍一下责任链设计模式的「基本组成」

  • 抽象处理者(Handler)角色:定义一个处理请求的接口,包含抽象处理方法和一个后继连接。
  • 具体处理者(Concrete Handler)角色:实现抽象处理者的处理方法,判断能否处理本次请求,如果可以处理请求则处理,否则将该请求转给它的后继者。
  • 客户类(Client)角色:创建处理链,并向链头的具体处理者对象提交请求,它不关心处理细节和请求的传递过程。

责任链模式 - 图2
责任链改造

  1. public abstract class AbstractHandler {
  2. /**
  3. * 下一关用当前抽象类来接收
  4. */
  5. protected AbstractHandler next;
  6. public void setNext(AbstractHandler next) {
  7. this.next = next;
  8. }
  9. public abstract int handler();
  10. }
  1. public class FirstPassHandler extends AbstractHandler{
  2. private int play(){
  3. return 80;
  4. }
  5. @Override
  6. public int handler(){
  7. System.out.println("第一关-->FirstPassHandler");
  8. int score = play();
  9. if(score >= 80){
  10. //分数>=80 并且存在下一关才进入下一关
  11. if(this.next != null){
  12. return this.next.handler();
  13. }
  14. }
  15. return score;
  16. }
  17. }
  1. public class SecondPassHandler extends AbstractHandler{
  2. private int play(){
  3. return 90;
  4. }
  5. public int handler(){
  6. System.out.println("第二关-->SecondPassHandler");
  7. int score = play();
  8. if(score >= 90){
  9. //分数>=90 并且存在下一关才进入下一关
  10. if(this.next != null){
  11. return this.next.handler();
  12. }
  13. }
  14. return score;
  15. }
  16. }
  1. public class ThirdPassHandler extends AbstractHandler{
  2. private int play(){
  3. return 95;
  4. }
  5. public int handler(){
  6. System.out.println("第三关-->ThirdPassHandler");
  7. int score = play();
  8. if(score >= 95){
  9. //分数>=95 并且存在下一关才进入下一关
  10. if(this.next != null){
  11. return this.next.handler();
  12. }
  13. }
  14. return score;
  15. }
  16. }
  1. public class HandlerClient {
  2. public static void main(String[] args) {
  3. FirstPassHandler firstPassHandler = new FirstPassHandler();//第一关
  4. SecondPassHandler secondPassHandler = new SecondPassHandler();//第二关
  5. ThirdPassHandler thirdPassHandler = new ThirdPassHandler();//第三关
  6. // 和上面没有更改的客户端代码相比,只有这里的set方法发生变化,其他都是一样的
  7. firstPassHandler.setNext(secondPassHandler);//第一关的下一关是第二关
  8. secondPassHandler.setNext(thirdPassHandler);//第二关的下一关是第三关
  9. //说明:因为第三关是最后一关,因此没有下一关
  10. //从第一个关卡开始
  11. firstPassHandler.handler();
  12. }
  13. }

责任链工厂改造

对于上面的请求链,我们也可以把这个关系维护到配置文件中或者一个枚举中。我将使用枚举来教会大家怎么动态的配置请求链并且将每个请求者形成一条调用链。

  1. public enum GatewayEnum {
  2. // handlerId, 拦截者名称,全限定类名,preHandlerId,nextHandlerId
  3. API_HANDLER(new GatewayEntity(1, "api接口限流", "cn.dgut.design.chain_of_responsibility.GateWay.impl.ApiLimitGatewayHandler", null, 2)),
  4. BLACKLIST_HANDLER(new GatewayEntity(2, "黑名单拦截", "cn.dgut.design.chain_of_responsibility.GateWay.impl.BlacklistGatewayHandler", 1, 3)),
  5. SESSION_HANDLER(new GatewayEntity(3, "用户会话拦截", "cn.dgut.design.chain_of_responsibility.GateWay.impl.SessionGatewayHandler", 2, null)),
  6. ;
  7. GatewayEntity gatewayEntity;
  8. public GatewayEntity getGatewayEntity() {
  9. return gatewayEntity;
  10. }
  11. GatewayEnum(GatewayEntity gatewayEntity) {
  12. this.gatewayEntity = gatewayEntity;
  13. }
  14. }
  1. public class GatewayEntity {
  2. private String name;
  3. private String conference;
  4. private Integer handlerId;
  5. private Integer preHandlerId;
  6. private Integer nextHandlerId;
  7. }
  1. public interface GatewayDao {
  2. /**
  3. * 根据 handlerId 获取配置项
  4. * @param handlerId
  5. * @return
  6. */
  7. GatewayEntity getGatewayEntity(Integer handlerId);
  8. /**
  9. * 获取第一个处理者
  10. * @return
  11. */
  12. GatewayEntity getFirstGatewayEntity();
  13. }
  1. public class GatewayImpl implements GatewayDao {
  2. /**
  3. * 初始化,将枚举中配置的handler初始化到map中,方便获取
  4. */
  5. private static Map<Integer, GatewayEntity> gatewayEntityMap = new HashMap<>();
  6. static {
  7. GatewayEnum[] values = GatewayEnum.values();
  8. for (GatewayEnum value : values) {
  9. GatewayEntity gatewayEntity = value.getGatewayEntity();
  10. gatewayEntityMap.put(gatewayEntity.getHandlerId(), gatewayEntity);
  11. }
  12. }
  13. @Override
  14. public GatewayEntity getGatewayEntity(Integer handlerId) {
  15. return gatewayEntityMap.get(handlerId);
  16. }
  17. @Override
  18. public GatewayEntity getFirstGatewayEntity() {
  19. for (Map.Entry<Integer, GatewayEntity> entry : gatewayEntityMap.entrySet()) {
  20. GatewayEntity value = entry.getValue();
  21. // 没有上一个handler的就是第一个
  22. if (value.getPreHandlerId() == null) {
  23. return value;
  24. }
  25. }
  26. return null;
  27. }
  28. }
  1. public class GatewayHandlerEnumFactory {
  2. private static GatewayDao gatewayDao = new GatewayImpl();
  3. // 提供静态方法,获取第一个handler
  4. public static GatewayHandler getFirstGatewayHandler() {
  5. GatewayEntity firstGatewayEntity = gatewayDao.getFirstGatewayEntity();
  6. GatewayHandler firstGatewayHandler = newGatewayHandler(firstGatewayEntity);
  7. if (firstGatewayHandler == null) {
  8. return null;
  9. }
  10. GatewayEntity tempGatewayEntity = firstGatewayEntity;
  11. Integer nextHandlerId = null;
  12. GatewayHandler tempGatewayHandler = firstGatewayHandler;
  13. // 迭代遍历所有handler,以及将它们链接起来
  14. while ((nextHandlerId = tempGatewayEntity.getNextHandlerId()) != null) {
  15. GatewayEntity gatewayEntity = gatewayDao.getGatewayEntity(nextHandlerId);
  16. GatewayHandler gatewayHandler = newGatewayHandler(gatewayEntity);
  17. tempGatewayHandler.setNext(gatewayHandler);
  18. tempGatewayHandler = gatewayHandler;
  19. tempGatewayEntity = gatewayEntity;
  20. }
  21. // 返回第一个handler
  22. return firstGatewayHandler;
  23. }
  1. /**
  2. * 反射实体化具体的处理者
  3. * @param firstGatewayEntity
  4. * @return
  5. */
  6. private static GatewayHandler newGatewayHandler(GatewayEntity firstGatewayEntity) {
  7. // 获取全限定类名
  8. String className = firstGatewayEntity.getConference();
  9. try {
  10. // 根据全限定类名,加载并初始化该类,即会初始化该类的静态段
  11. Class<?> clazz = Class.forName(className);
  12. return (GatewayHandler) clazz.newInstance();
  13. } catch (ClassNotFoundException | IllegalAccessException | InstantiationException e) {
  14. e.printStackTrace();
  15. }
  16. return null;
  17. }
  18. }
  1. public class GetewayClient {
  2. public static void main(String[] args) {
  3. GetewayHandler firstGetewayHandler = GetewayHandlerEnumFactory.getFirstGetewayHandler();
  4. firstGetewayHandler.service();
  5. }
  6. }

聊聊其他

设计模式有很多,责任链只是其中的一种,我觉得很有意思,非常值得一学。
设计模式确实是一门艺术,仍需努力呀!