问题
Is it possible to get the latest running process in Activiti with createProcessInstanceQuery ?
runtimeService.createProcessInstanceQuery().processDefinitionKey('myKey').active().singleResult().getProcessInstanceId() I want to get the process instance ID of that definition but only the latest running process. Thank you
回答1:
To get a specific running process instance ID , you can use the HistoryService with : for example to get the last started process instance with specific definition key:
historyService.createHistoricProcessInstanceQuery().unfinished().processDefinitionKey("YOURKEY").orderByProcessInstanceStartTime().desc().listPage(0,1)[0].id
来源:https://stackoverflow.com/questions/43684381/get-the-latest-running-process-instance-in-activiti