在bpmn.js我可以導入文件包含BPMN的XML 2.0 fromat這樣的: var BpmnViewer = require('bpmn-js');
var xml; // my BPMN 2.0 xml
var viewer = new BpmnViewer({ container: 'body' });
viewer.importXML(xml, function(err) {
我如何獲得我在Camunda中使用的代碼中的活動任務列表? 我已經看過這個答案「How to query the position of a process instance?」但我不明白什麼是「processInstanceId」,我應該在哪裏讓它使這個方法有效。 這裏是我目前正試圖代碼: package org.camunda.bpm;
import java.util.HashMap;