activiti 처리 오류
taskService.complete(taskId);
오류 정보: [11-21 14:45:52] ERROR CommandContext [main]: Error while closing command context
org.activiti.engine.ActivitiException: A delegated task cannot be completed, but should be resolved instead.
Activiti를 사용하여 의뢰 작업을 수행할 때 의뢰 작업이 완료된 후 의뢰인이 임무를 완료하면 오류가 발생합니다.
A delegated task cannot be completed, but should be resolved instead.
일
위탁된 절차는 우선resolved라는 임무를 제출해야 하기 때문이다.그러니까 complete 하기 전에 resolved를 해야 돼요.
//
taskService.resolveTask(taskId,variables);
//
taskService.complete(taskId, variables);
연결:http://blog.csdn.net/chenfengdejuanlian/article/details/77450573
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
activiti 처리 오류activiti5.22.0, 작업 중 오류, taskService.complete(taskId); 오류 정보: [11-21 14:45:52] ERROR CommandContext [main]: Error while ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.