07.flowable 流程定义查看流程图和xml
Posted 小学生05101
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了07.flowable 流程定义查看流程图和xml相关的知识,希望对你有一定的参考价值。
1、演示
2、代码分享
public void processFile(@PathVariable String id, @PathVariable String type, HttpServletResponse response)
try
byte[] b = null;
ProcessDefinitionVo pd = flowableProcessDefinitionService.getById(id);
if (pd != null)
if (type.equals("xml"))
response.setHeader("Content-type", "text/xml;charset=UTF-8");
InputStream inputStream = repositoryService.getResourceAsStream(pd.getDeploymentId(), pd.getResourceName());
b = IoUtil.readInputStream(inputStream, "image inputStream name");
else
response.setHeader("Content-Type", "image/png");
InputStream inputStream = repositoryService.getResourceAsStream(pd.getDeploymentId(), pd.getDgrmResourceName());
b = IoUtil.readInputStream(inputStream, "image inputStream name");
response.getOutputStream().write(b);
catch (Exception e)
LOGGER.error("ApiFlowableModelResource-loadXmlByModelId:" + e);
e.printStackTrace();
以上是关于07.flowable 流程定义查看流程图和xml的主要内容,如果未能解决你的问题,请参考以下文章
Activiti应用实践-查询BPMN XML文件和图片资源文件
java Activiti6.0 后台 框架 spring5 SSM 工作流引擎 审批流程
Activiti6.0 spring5 工作流引擎 java SSM流程审批 项目框架
java OA项目源码 flowable activiti流程引擎 Springboot html vue.js 前后分离