如何仅在我提供的部署实例上查询 camunda 任务

How query camunda task just on the intances of the deployment I gave

我正在使用 springBoot 和 camunda。 我已经部署了两个 bmpn 文件。第一个叫 "Test1" 第二个叫 "Test2"

现在我只想在 "Test1" bpmn 文件的实例中执行查询任务,排除 "Test2" bpmn 文件的实例。

谁能告诉我怎么做?请

只需使用如下所示的 java api。

taskService.createTaskQuery().processDefinitionKey( your process definition key);

然后你只能在你给的key的流程定义实例中进行任务查询