美文网首页工作流
flowable实现节点超时自动跳过

flowable实现节点超时自动跳过

作者: 爱余星痕 | 来源:发表于2019-04-18 22:12 被阅读0次

    不论是flowable还是activiti,都可以快速的实现节点超时自动跳过,主要是使用边缘事件

    1. 启动定时任务
      在初始化时,启动定时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就是开关

    1. 使用边缘事件
      生成流程定义如下:
    <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个小时自动跳过

    1. 实现监听器
      从上述定义,可以看到,我配置了一个监听器.
      为什么配一个监听器呢,主要是为了让自动跳过时,生成一条日记记录,不然自动跳过了,啥都不知道了.
      当然,如果不考虑加日志,上面的配置已经可以定时跳过了
    /**
     * 流程节点超时自动跳过
     */
    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);
    
        }
    }
    
    
    1. 遗留问题:
    • 流程只支持节点超时自动跳过,但不支持任务超时自动跳过,如果需要实现,流程引擎不支持
    • 自动跳过是通过定时器的,但问题是定时器如果执行失败,没办法获取该失败原因,这个要怎么处理?
      初步发现,全部的出错日志都记录到表act_ge_bytearray,后面再分析原因吧

    相关文章

      网友评论

        本文标题:flowable实现节点超时自动跳过

        本文链接:https://www.haomeiwen.com/subject/jrbxgqtx.html