Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 BPMN 工作流将任务分配给受让人。我如何释放(向后)任务,以便在分配之前可供以前的候选人使用?
http://www.activiti.org/userguide/index.html#bpmnFirstExampleCode
将任务分配者设置为null将完成这项工作:
null
taskService.setAssignee(task.getId(), null);
另请参阅此论坛帖子。