Flowable 有如下方式部署流程:
```java
public interface DeploymentBuilder {
DeploymentBuilder addInputStream(String var1, InputStream var2);
DeploymentBuilder addClasspathResource(String var1);
DeploymentBuilder addString(String var1, String var2);
DeploymentBuilder addBytes(String var1, byte[] var2);
DeploymentBuilder addZipInputStream(ZipInputStream var1);
DeploymentBuilder addBpmnModel(String var1, BpmnModel var2);
```
<br/>
**1. `addClasspathResource`方法部署**
```java
@Test
public void addClasspathResourceTest() {
//获取引擎
ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
//获取repositoryService
RepositoryService repositoryService = processEngine.getRepositoryService();
//部署流程
Deployment deployment = repositoryService.createDeployment()
.addClasspathResource("bpmn/evectionDeployment.bpmn")
.name("出差申请流程")
.key("evectionDeployment")
.category("业务类流程")
.deploy();
//流程部署key: evectionDeployment
System.out.println("流程部署key: " + deployment.getKey());
//流程类别: 业务类流程
System.out.println("流程类别: " + deployment.getCategory());
//流程部署Id: 90001
System.out.println("流程部署Id: " + deployment.getId());
//流程部署名称: 出差申请流程
System.out.println("流程部署名称: " + deployment.getName());
}
```
**2. `addZipInputStream`方法部署**
`addZipInputStream`以压缩包的方式部署,可以一次性部署多个流程,它会自动扫描压缩包文件里面的`.bpmn`、`.xml`文件。
```java
@Test
public void addZipInputStreamTest() {
//获取流程引擎
ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
//获取RepositoryService
RepositoryService repositoryService = processEngine.getRepositoryService();
//读取资源包文件
InputStream inputStream = this.getClass()
.getClassLoader()
//evectionZip.zip 中包含evectionZip001.bpmn、evectionZip002.bpmn 两个流程文件。
.getResourceAsStream("bpmn/evectionZip.zip");
ZipInputStream zipInputStream = new ZipInputStream(inputStream);
//部署流程
Deployment deployment = repositoryService.createDeployment()
.addZipInputStream(zipInputStream)
.name("出差申请流程")
.key("evectionZip")
.category("业务类流程")
.deploy();
//流程部署key: evectionZip
System.out.println("流程部署key: " + deployment.getKey());
//流程类别: 业务类流程
System.out.println("流程类别: " + deployment.getCategory());
//流程部署Id: 100001
System.out.println("流程部署Id: " + deployment.getId());
//流程部署名称: 出差申请流程
System.out.println("流程部署名称: " + deployment.getName());
}
```
- Activiti流程引擎
- 工作流介绍
- Activiti是什么
- Activiti流程处理步骤
- Activiti环境搭建
- 搭建步骤
- 表结构介绍
- ActivitiAPI结构
- 认识流程符号
- 流程设计器的使用
- 流程处理步骤
- 乱码问题
- 流程实例
- 流程实例是什么
- 业务标识
- 查询流程实例
- 挂起/激活流程实例
- 个人任务
- 分配任务负责人
- 查询待办任务
- 办理权限
- 流程变量
- 流程变量类型
- 流程变量作用域
- 使用流程变量控制流程
- 组任务
- 设置任务候选人
- 组任务办理流程
- 网关
- 4种网关类型
- 排他网关
- 并行网关
- 包含网关
- 事件网关
- Spring整合Activiti
- SpringBoot整合Activiti
- Flowable流程引擎
- Flowable是什么
- Flowable与Activiti
- Flowable环境搭建
- FlowableAPI
- 流程引擎API与服务
- 流程处理步骤
- 流程部署
- 流程部署方式
- 流程定义版本
- 删除已部署的流程
- 下载资源
- 流程实例
- 什么是流程实例
- 业务标识
- 查询流程实例
- 挂起/激活流程实例
- 分配任务负责人
- 固定分配
- UEL表达式分配
- 监听器分配
- 办理权限
- 流程变量
- 流程变量类型
- 流程变量作用域
- 流程变量控制流程
- 组任务
- 设置任务候选人
- 组任务办理流程
- 网关
- 排他网关
- 并行网关
- 包含网关
- 事件网关
- 历史查询
- 查询历史
- Spring整合Flowable
- 配置文件整合
- 配置类整合
- SpringBoot整合Flowable