03.flowable 流程模板部署
Posted 小学生05101
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了03.flowable 流程模板部署相关的知识,希望对你有一定的参考价值。
1、演示
2、代码
public ReturnVo<String> deploy(String modelId)
ReturnVo<String> returnVo = new ReturnVo<>(ReturnCode.FAIL, "部署流程失败!");
if (StringUtils.isBlank(modelId))
returnVo.setMsg("模板ID不能为空!");
return returnVo;
try
Model model = modelService.getModel(modelId.trim());
//到时候需要添加分类
String categoryCode = "1000";
BpmnModel bpmnModel = modelService.getBpmnModel(model);
//添加隔离信息
String tenantId = "flow";
//必须指定文件后缀名否则部署不成功
Deployment deploy = repositoryService.createDeployment()
.name(model.getName())
.key(model.getKey())
.category(categoryCode)
.tenantId(tenantId)
.addBpmnModel(model.getKey() + ".bpmn", bpmnModel)
.deploy();
returnVo.setData(deploy.getId());
returnVo.setMsg("部署流程成功!");
returnVo.setCode(ReturnCode.SUCCESS);
catch (Exception e)
e.printStackTrace();
returnVo.setMsg(String.format("部署流程异常!- %s", e.getMessage()));
return returnVo;
以上是关于03.flowable 流程模板部署的主要内容,如果未能解决你的问题,请参考以下文章