审批一个内容,可以先从基层管理者(Handler A)开始,如果经过基层管理者无法满足审批条件(handle),将到高层管理者(Handler B)进行审批。
成都创新互联公司专业为企业提供玉龙网站建设、玉龙做网站、玉龙网站设计、玉龙网站制作等企业网站建设、网页设计与制作、玉龙企业网站模板建站服务,十年玉龙做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
每个人审批节点只处理自己能力范围内的事情,这就和责任链模式十分吻合了。
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 until an object handles it.
通过给多个对象处理请求的机会,避免将请求的发送方与其接收方耦合在一起。链接接收对象并沿着链传递请求,直到一个对象处理它。
审批节点定义
package com.example.designpattern.chainofresponsibility.handler;
/**
* 责任链节点
*
* @author hongcunlin
*/
public abstract class Handler {
/**
* 下一个审批节点
*/
protected Handler next;
/**
* 处理
*
* @param amount 金额
*/
public abstract void handle(int amount);
/**
* 设置下一个节点
*
* @param next 节点
*/
public void setNext(Handler next) {
this.next = next;
}
}
审批节点实现,分别是组长、经理、总监
package com.example.designpattern.chainofresponsibility.handler.impl;
import com.example.designpattern.chainofresponsibility.handler.Handler;
import org.springframework.stereotype.Component;
/**
* 组长
*
* @author hongcunlin
*/
@Component("teamLeader")
public class TeamLeader extends Handler {
/**
* 上限金额
*/
private static final Integer LIMITED_AMOUNT = 500;
@Override
public void handle(int amount) {
if (amount < LIMITED_AMOUNT) {
System.out.println("TeamLeader approved");
} else if (null != next) {
next.handle(amount);
}
}
}
package com.example.designpattern.chainofresponsibility.handler.impl;
import com.example.designpattern.chainofresponsibility.handler.Handler;
import org.springframework.stereotype.Component;
/**
* 经理
*
* @author hongcunlin
*/
@Component("manager")
public class Manager extends Handler {
/**
* 上限金额
*/
private static final Integer LIMITED_AMOUNT = 1000;
@Override
public void handle(int amount) {
if (amount < LIMITED_AMOUNT) {
System.out.println("Manager approved");
} else if (null != next) {
next.handle(amount);
}
}
}
package com.example.designpattern.chainofresponsibility.handler.impl;
import com.example.designpattern.chainofresponsibility.handler.Handler;
import org.springframework.stereotype.Component;
/**
* 总监
*
* @author hongcunlin
*/
@Component("director")
public class Director extends Handler {
/**
* 上限金额
*/
private static final Integer LIMITED_AMOUNT = 1000;
@Override
public void handle(int amount) {
if (amount < LIMITED_AMOUNT) {
System.out.println("Director approved");
} else if (null != next) {
next.handle(amount);
}
}
}
构建团组长、经理、总监的审批顺序金额上限由低到高
package com.example.designpattern.chainofresponsibility;
import com.example.designpattern.chainofresponsibility.handler.Handler;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import javax.annotation.Resource;
/**
* 责任链
*
* @author hongcunlin
*/
@Component("handlerChain")
public class HandlerChain {
/**
* 组长
*/
@Resource(name = "teamLeader")
private Handler teamLeader;
/**
* 经理
*/
@Resource(name = "manager")
private Handler manager;
/**
* 总监
*/
@Resource(name = "director")
private Handler director;
/**
* 构建责任链
*/
@PostConstruct
public void init() {
teamLeader.setNext(manager);
manager.setNext(director);
}
/**
* 处理请求
*
* @param amount 金额
*/
public void handleRequest(int amount) {
teamLeader.handle(amount);
}
}
package com.example.designpattern.chainofresponsibility;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import javax.annotation.Resource;
/**
* 责任链模式测试
*
* @author hongcunlin
*/
@SpringBootTest
public class DesignPatternTest {
/**
* 责任链
*/
@Resource(name = "handlerChain")
private HandlerChain handlerChain;
/**
* 测试审批
*/
@Test
public void test() {
handlerChain.handleRequest(750);
}
}
可以看到750元费用的审批,是轮到经理审批的,没问题
500<750<1000
本文对飞书审批流节点的审批,采用责任链模式实现,同时是基于项目开发中必用的Spring框架的,贴近实际开发。
有空再通过日常生活,聊聊其中涉及的设计模式。
网站标题:【设计模式】通过飞书的审批流了解责任链模式
转载注明:http://www.mswzjz.cn/qtweb/news12/493912.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能