0


Flowable工作流之Flowable UI画工作流程图

目录

1. Flowable 简介

Flowable

是一个用

Java

编写的轻量级业务流程引擎。

Flowable

流程引擎允许您部署

BPMN 2.0

流程定义(用于定义流程的行业

XML

标准)、创建这些流程定义的流程实例、运行查询、访问活动或历史流程实例和相关数据

Flowable

在将其添加到应用程序、服务、体系结构时非常灵活。您可以将引擎嵌入到您的应用程序或服务中,方法是包含

Flowable

库,该库作为

JAR

提供。因为它是一个

JAR

,所以可以很容易地将它添加到任何

Java

环境中:

javase;servlet

容器,如

Tomcat

Jetty、Spring;javaee

服务器,如

JBoss

WebSphere

等。或者,您可以使用可流动的

restapi

通过

HTTP

进行通信。还有一些可流动的应用程序(

Flowable Modeler、Flowable Admin、Flowable IDM 和 Flowable Task

),它们提供了用于处理流程和任务的现成示例

UI
Flowable

GitHub

官网:https://github.com/flowable/flowable-engine

Flowable

中文用户书册:https://tkjohn.github.io/flowable-userguide/#_advanced

现在市面上主流的流程引擎就一共有三个:

  • Activiti
  • Flowable
  • Camunda

这三个各有特点:

  • Activiti 目前是侧重云,他目前的设计会向 Spring CloudDocker 这些去靠拢
  • Flowable 核心思想还是在做一个功能丰富的流程引擎工具,除了最最基础的工作流,他还提供了很多其他的扩展点,我们可以基于 Flowable 实现出许多我们想要的功能(当然这也是小伙伴们觉得 Flowable 使用复杂的原因之一)
  • Camunda 相对于前两个而言比较轻量级,Camunda 有一个比较有特色的功能就是他提供了一个小巧的编辑器,基于 bpmn.io 来实现的。如果你的项目需求是做一个轻巧的、灵活的、定制性强的编辑器,工作流是嵌入式的,那么可以选择 Camunda

工作流程图这块其实有一个统一的标准,那就是

BPMN

BPMN

全称是 Business Process Model and Notation,中文译作业务流程模型和标记法,这个中文太绕口了,还是简称

BPMN

这是一套图形化表示法,用图形来表示业务流程模型。

BPMN

最初由业务流程管理倡议组织(

BPMI, Business Process Management Initiative

)开发,

BPMI

2005

年与对象管理组织(

OMG, Object Management Group

)合并,并于

2011

1

OMG

发布

2.0

版本,同时改为现在的名称

一句话,就是流程图这块有一个特别古老的规范,那就是

BPMN

,而我们前面所说的无论是

Activiti、Flowable

还是

Camunda

,都是支持这个规范的,所以呢,无论你使用哪一个流程引擎,都可以使用同一套流程图

2. 绘制工作流程图

2.1.

Flowable UI

的安装部署

首先下载文件

Flowable

相关的资源,进入 https://github.com/flowable/flowable-engine/releases,选择版本下载,下载下来是一个

ZIP

压缩包,解压压缩会看到如下目录结构

在这里插入图片描述

2.2. 启动服务

进入

wars

目录,会看到

flowable-rest.war

flowable-ui.war

两个

war

文件,然后

cmd

执行如下命令

java -jar flowable-ui.war

如果一闪而过则检查

jdk

的环境变量配置。启动成功后,在浏览器中访问

http://localhost:8080/flowable-ui/#/

,默认的账号密码是:

admin/test

在这里插入图片描述

2.3. 用户管理

我们先在

身份管理应用程序

中创建用户并授权

在这里插入图片描述
创建用户

在这里插入图片描述
填写详细信息

在这里插入图片描述
授权管理

在这里插入图片描述

2.4. 工作流程效果图

最后完成的工作流程图如下

在这里插入图片描述

2.5. 绘制工作流程图

点击创建流程,填写相关的信息

在这里插入图片描述
进入流程图绘制界面

在这里插入图片描述

2.5.1. 添加开始事件

在这里插入图片描述

2.5.2. 添加用户活动(用户审批)

在这里插入图片描述

2.5.3. 添加网关

在这里插入图片描述

2.5.4. 添加结束事件

在这里插入图片描述

2.5.5. 设置【主管审批】的相关属性

  • 主键 ID:可以结合业务需求,业务可以根据不同步骤执行不同的业务操作
  • 分配用户:这里为了方便,直接选择了固定值,这里的候选组是具体的业务系统的角色 ID 从而实现不同角色审批不同流程的效果

在这里插入图片描述

2.5.6. 设置【网关】的流条件

2.5.6.1. 同意的条件

  • 连线条件的输入框是支持 EL 表达式,因此可以使用 ${}
  • 【同意的条件】:这里填写了 ${executeType=='YES'} 的意思是主管审批的时候传递一个 executeType 变量,并且 executeType 变量的值为 YES 的时候,则走到下一步(经理审批)

在这里插入图片描述

2.5.6.2. 拒绝的条件

  • 这里填写了 ${executeType=='YES'} 的意思是主管审批的时候传递一个 executeType 变量,并且 executeType 变量的值为 NO 的时候,则结束流程

在这里插入图片描述

2.6. 下载工作流程图

在这里插入图片描述

<?xml version="1.0" encoding="UTF-8"?><definitionsxmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:flowable="http://flowable.org/bpmn"xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI"typeLanguage="http://www.w3.org/2001/XMLSchema"expressionLanguage="http://www.w3.org/1999/XPath"targetNamespace="http://www.flowable.org/processdef"exporter="Flowable Open Source Modeler"exporterVersion="6.7.2"><processid="MyLeave"name="MyLeave"isExecutable="true"><documentation>员工请假流程</documentation><startEventid="sid-159DD77D-9878-4288-AC29-B898E08DC216"flowable:formFieldValidation="true"></startEvent><userTaskid="zgID"name="主管审批"flowable:assignee="张主管"flowable:formFieldValidation="true"><extensionElements><modeler:initiator-can-completexmlns:modeler="http://flowable.org/modeler"><![CDATA[false]]></modeler:initiator-can-complete></extensionElements></userTask><sequenceFlowid="sid-1E8F84D7-6C11-4D88-84C9-B818474F880E"sourceRef="sid-159DD77D-9878-4288-AC29-B898E08DC216"targetRef="zgID"></sequenceFlow><exclusiveGatewayid="sid-A6E285DA-5C65-4BA7-8BB4-5F4D97AC12E0"></exclusiveGateway><sequenceFlowid="sid-08020782-2DDE-4C56-BFC0-224DC99FB50E"sourceRef="zgID"targetRef="sid-A6E285DA-5C65-4BA7-8BB4-5F4D97AC12E0"></sequenceFlow><endEventid="sid-5BFB0FC6-B2A5-4F6E-9BDB-8785F2883AEB"></endEvent><userTaskid="jlID"name="经理审批"flowable:assignee="李经理"flowable:formFieldValidation="true"><extensionElements><modeler:initiator-can-completexmlns:modeler="http://flowable.org/modeler"><![CDATA[false]]></modeler:initiator-can-complete></extensionElements></userTask><exclusiveGatewayid="sid-0DA07C30-2930-40F5-A887-FA1C5BF307EF"></exclusiveGateway><sequenceFlowid="sid-833DAA1C-F1C2-41A1-8455-3FAB79893C14"sourceRef="jlID"targetRef="sid-0DA07C30-2930-40F5-A887-FA1C5BF307EF"></sequenceFlow><endEventid="sid-8941849E-B17F-4848-BFC8-C6B05CC21A9F"></endEvent><endEventid="sid-3596170A-0E0F-4C07-BD32-F04AFB375EB1"></endEvent><sequenceFlowid="sid-A74937CE-02B1-493B-8033-08CA2D652771"name="同意"sourceRef="sid-A6E285DA-5C65-4BA7-8BB4-5F4D97AC12E0"targetRef="jlID"><conditionExpressionxsi:type="tFormalExpression"><![CDATA[${executeType=='YES'}]]></conditionExpression></sequenceFlow><sequenceFlowid="sid-BE2005E1-26F7-4E42-8AC2-7C4F25274F1A"name="同意"sourceRef="sid-0DA07C30-2930-40F5-A887-FA1C5BF307EF"targetRef="sid-3596170A-0E0F-4C07-BD32-F04AFB375EB1"><conditionExpressionxsi:type="tFormalExpression"><![CDATA[${executeType=='YES'}]]></conditionExpression></sequenceFlow><sequenceFlowid="sid-67F146AA-C9F5-4A21-AF26-A77A349D80B7"name="拒绝"sourceRef="sid-A6E285DA-5C65-4BA7-8BB4-5F4D97AC12E0"targetRef="sid-5BFB0FC6-B2A5-4F6E-9BDB-8785F2883AEB"><conditionExpressionxsi:type="tFormalExpression"><![CDATA[${executeType=='NO'}]]></conditionExpression></sequenceFlow><sequenceFlowid="sid-4CC613DD-7789-408B-AFA0-1241261A4E79"name="拒绝"sourceRef="sid-0DA07C30-2930-40F5-A887-FA1C5BF307EF"targetRef="sid-8941849E-B17F-4848-BFC8-C6B05CC21A9F"><conditionExpressionxsi:type="tFormalExpression"><![CDATA[${executeType=='NO'}]]></conditionExpression></sequenceFlow></process><bpmndi:BPMNDiagramid="BPMNDiagram_MyLeave"><bpmndi:BPMNPlanebpmnElement="MyLeave"id="BPMNPlane_MyLeave"><bpmndi:BPMNShapebpmnElement="sid-159DD77D-9878-4288-AC29-B898E08DC216"id="BPMNShape_sid-159DD77D-9878-4288-AC29-B898E08DC216"><omgdc:Boundsheight="30.0"width="30.0"x="45.0"y="105.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNShapebpmnElement="zgID"id="BPMNShape_zgID"><omgdc:Boundsheight="80.0"width="100.0"x="165.0"y="80.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNShapebpmnElement="sid-A6E285DA-5C65-4BA7-8BB4-5F4D97AC12E0"id="BPMNShape_sid-A6E285DA-5C65-4BA7-8BB4-5F4D97AC12E0"><omgdc:Boundsheight="40.0"width="40.0"x="360.0"y="100.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNShapebpmnElement="sid-5BFB0FC6-B2A5-4F6E-9BDB-8785F2883AEB"id="BPMNShape_sid-5BFB0FC6-B2A5-4F6E-9BDB-8785F2883AEB"><omgdc:Boundsheight="28.0"width="28.0"x="366.0"y="225.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNShapebpmnElement="jlID"id="BPMNShape_jlID"><omgdc:Boundsheight="80.0"width="100.0"x="495.0"y="80.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNShapebpmnElement="sid-0DA07C30-2930-40F5-A887-FA1C5BF307EF"id="BPMNShape_sid-0DA07C30-2930-40F5-A887-FA1C5BF307EF"><omgdc:Boundsheight="40.0"width="40.0"x="690.0"y="100.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNShapebpmnElement="sid-8941849E-B17F-4848-BFC8-C6B05CC21A9F"id="BPMNShape_sid-8941849E-B17F-4848-BFC8-C6B05CC21A9F"><omgdc:Boundsheight="28.0"width="28.0"x="696.0"y="225.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNShapebpmnElement="sid-3596170A-0E0F-4C07-BD32-F04AFB375EB1"id="BPMNShape_sid-3596170A-0E0F-4C07-BD32-F04AFB375EB1"><omgdc:Boundsheight="28.0"width="28.0"x="825.0"y="106.0"></omgdc:Bounds></bpmndi:BPMNShape><bpmndi:BPMNEdgebpmnElement="sid-1E8F84D7-6C11-4D88-84C9-B818474F880E"id="BPMNEdge_sid-1E8F84D7-6C11-4D88-84C9-B818474F880E"flowable:sourceDockerX="15.0"flowable:sourceDockerY="15.0"flowable:targetDockerX="50.0"flowable:targetDockerY="40.0"><omgdi:waypointx="74.94999923927439"y="120.0"></omgdi:waypoint><omgdi:waypointx="164.99999999991007"y="120.0"></omgdi:waypoint></bpmndi:BPMNEdge><bpmndi:BPMNEdgebpmnElement="sid-08020782-2DDE-4C56-BFC0-224DC99FB50E"id="BPMNEdge_sid-08020782-2DDE-4C56-BFC0-224DC99FB50E"flowable:sourceDockerX="50.0"flowable:sourceDockerY="40.0"flowable:targetDockerX="20.5"flowable:targetDockerY="20.5"><omgdi:waypointx="264.9499999999992"y="120.1509063444109"></omgdi:waypoint><omgdi:waypointx="360.43939393938865"y="120.43939393939392"></omgdi:waypoint></bpmndi:BPMNEdge><bpmndi:BPMNEdgebpmnElement="sid-4CC613DD-7789-408B-AFA0-1241261A4E79"id="BPMNEdge_sid-4CC613DD-7789-408B-AFA0-1241261A4E79"flowable:sourceDockerX="20.5"flowable:sourceDockerY="20.5"flowable:targetDockerX="14.0"flowable:targetDockerY="14.0"><omgdi:waypointx="710.4194915254237"y="139.52220575783235"></omgdi:waypoint><omgdi:waypointx="710.0588602435497"y="225.00012270930887"></omgdi:waypoint></bpmndi:BPMNEdge><bpmndi:BPMNEdgebpmnElement="sid-833DAA1C-F1C2-41A1-8455-3FAB79893C14"id="BPMNEdge_sid-833DAA1C-F1C2-41A1-8455-3FAB79893C14"flowable:sourceDockerX="50.0"flowable:sourceDockerY="40.0"flowable:targetDockerX="20.5"flowable:targetDockerY="20.5"><omgdi:waypointx="594.9499999999981"y="120.15090634441087"></omgdi:waypoint><omgdi:waypointx="690.4393939393933"y="120.43939393939394"></omgdi:waypoint></bpmndi:BPMNEdge><bpmndi:BPMNEdgebpmnElement="sid-BE2005E1-26F7-4E42-8AC2-7C4F25274F1A"id="BPMNEdge_sid-BE2005E1-26F7-4E42-8AC2-7C4F25274F1A"flowable:sourceDockerX="20.5"flowable:sourceDockerY="20.5"flowable:targetDockerX="14.0"flowable:targetDockerY="14.0"><omgdi:waypointx="729.516569086651"y="120.42578125"></omgdi:waypoint><omgdi:waypointx="825.0001009915921"y="120.054279921789"></omgdi:waypoint></bpmndi:BPMNEdge><bpmndi:BPMNEdgebpmnElement="sid-67F146AA-C9F5-4A21-AF26-A77A349D80B7"id="BPMNEdge_sid-67F146AA-C9F5-4A21-AF26-A77A349D80B7"flowable:sourceDockerX="20.5"flowable:sourceDockerY="20.5"flowable:targetDockerX="14.0"flowable:targetDockerY="14.0"><omgdi:waypointx="380.4194915254237"y="139.52220575783235"></omgdi:waypoint><omgdi:waypointx="380.05886024354976"y="225.00012270930887"></omgdi:waypoint></bpmndi:BPMNEdge><bpmndi:BPMNEdgebpmnElement="sid-A74937CE-02B1-493B-8033-08CA2D652771"id="BPMNEdge_sid-A74937CE-02B1-493B-8033-08CA2D652771"flowable:sourceDockerX="20.5"flowable:sourceDockerY="20.5"flowable:targetDockerX="50.0"flowable:targetDockerY="40.0"><omgdi:waypointx="399.50196526507943"y="120.44207317073172"></omgdi:waypoint><omgdi:waypointx="494.9999999999935"y="120.15182370820669"></omgdi:waypoint></bpmndi:BPMNEdge></bpmndi:BPMNPlane></bpmndi:BPMNDiagram></definitions>

本文转载自: https://blog.csdn.net/weixin_38192427/article/details/127500947
版权归原作者 桐花思雨 所有, 如有侵权,请联系我们删除。

“Flowable工作流之Flowable UI画工作流程图”的评论:

还没有评论