activiti7 获取流程定义的xml


RepositoryService repositoryService = ProcessEngines.getDefaultProcessEngine().getRepositoryService();

//获取BpmnModel对象
BpmnModel bpmnModel = repositoryService.getBpmnModel(processInstanceId);
//创建转换对象

BpmnXMLConverter converter = new BpmnXMLConverter();
//把bpmnModel对象转换成字符
byte[] bytes = converter.convertToXML(bpmnModel);
String xmlContenxt = new String(bytes);

xmlContenxt即为流程的xml


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM