不論是flowable還是activiti,都可以快速的實現節(jié)點超時自動跳過躏鱼,主要是使用邊緣事件
- 啟動定時任務
在初始化時,啟動定時job,寫在配置文件如下
flowable:
#啟動定時任務JOB
async-executor-activate: true
check-process-definitions: false
rest-api-enabled: false
database-schema-update: true
idm:
enabled: false
注意: async-executor-activate就是開關
- 使用邊緣事件
生成流程定義如下:
<userTask id="N5" name="審批" flowable:async="true" flowable:assignee="1,2,3">
<multiInstanceLoopCharacteristics isSequential="false" flowable:collection="{starmark_emptycollection}" flowable:elementVariable="starmark_atuser"></multiInstanceLoopCharacteristics>
</userTask>
<boundaryEvent id="BoundaryEvent_N5" name="審批" attachedToRef="N5" cancelActivity="true">
<extensionElements>
<flowable:executionListener event="end" class="com.starmark.oa.workflow.activiti.listener.ProcessDueTimeListener"></flowable:executionListener>
</extensionElements>
<timerEventDefinition>
<timeDate>PT1H</timeDate>
</timerEventDefinition>
</boundaryEvent>
上述就配置了1個小時自動跳過
- 實現監(jiān)聽器
從上述定義,可以看到,我配置了一個監(jiān)聽器.
為什么配一個監(jiān)聽器呢,主要是為了讓自動跳過時,生成一條日記記錄,不然自動跳過了,啥都不知道了.
當然,如果不考慮加日志,上面的配置已經可以定時跳過了
/**
* 流程節(jié)點超時自動跳過
*/
public class ProcessDueTimeListener implements ExecutionListener {
private IActHiCommentService actHiCommentService=null;
private IActHiCommentService getActHiCommentService(){
if(actHiCommentService==null){
actHiCommentService=SpringContextUtils.getBean(IActHiCommentService.class);
}
return actHiCommentService;
}
@Override
public void notify(DelegateExecution execution) {
CommentEntity comment = new CommentEntityImpl();
comment.setId(IdWorker.getIdStr());
comment.setProcessInstanceId(execution.getProcessInstanceId());
comment.setType("comment");
comment.setAction(execution.getCurrentFlowElement().getName()+"超時自動跳過");
comment.setTime(new Date());
comment.setUserId("system");
comment.setMessage("");
System.out.println(execution.getProcessInstanceId());
System.out.println( execution.getCurrentActivityId());
getActHiCommentService().insert(comment);
}
}
- 遺留問題:
- 流程只支持節(jié)點超時自動跳過洛二,但不支持任務超時自動跳過监右,如果需要實現埂伦,流程引擎不支持
- 自動跳過是通過定時器的顿涣,但問題是定時器如果執(zhí)行失敗,沒辦法獲取該失敗原因一喘,這個要怎么處理?
初步發(fā)現,全部的出錯日志都記錄到表act_ge_bytearray,后面再分析原因吧