-->

Get the latest running process instance in Activit

2019-09-15 07:38发布

问题:

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