java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > springboot开发flowable定时任务

springboot开发flowable定时任务问题

作者:zl1zl2zl3

这篇文章主要介绍了springboot开发flowable定时任务问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

springboot开发flowable定时任务

激活流程引擎的一步执行器

  @Bean
  public ExtProcessEngineConfiguration engineConfiguration(){
    ExtProcessEngineConfiguration engineConfiguration = new ExtProcessEngineConfiguration();
    engineConfiguration.setDatabaseSchemaUpdate("true");
    engineConfiguration.setDataSource(dataSource);
    engineConfiguration.setTransactionManager(transactionManager);
    engineConfiguration.setAsyncExecutorActivate(true);
    
    List<SessionFactory> customSessionFactories = new ArrayList<>();
    customSessionFactories.add(userEntityManagerFactory());
    customSessionFactories.add(groupEntityManagerFactory());
    customSessionFactories.add(membershipEntityManagerFactory());
    engineConfiguration.setCustomSessionFactories(customSessionFactories);
         
    return engineConfiguration;

流程图:

其中,定时任务节点类型是 Timer Intermediate Catch Event

设置Timer Definition Type,有3种类型:

timeDate

<timerEventDefinition> <timeDate>2018-02-06T12:13:14</timeDate> </timerEventDefinition>

在确切的时间点执行

timeDuration

<timerEventDefinition> <timeDuration>P10D</timeDuration> </timerEventDefinition>

 从最后一个任务完成后10天开始执行

timeCycle

<timerEventDefinition>
  <timeCycle activiti:endDate="2018-02-25T16:42:11+00:00">R3/PT10H</timeCycle>
</timerEventDefinition>

或者变量形式:

<timerEventDefinition>
  <timeCycle>R3/PT10H/${EndDate}</timeCycle>
</timerEventDefinition>

循环3次,间隔10小时

也可以使用cron expressions :http://www.quartz-scheduler.org/documentation/

比如设置了

<timerEventDefinition> <timeDate>2018-02-06T12:13:14</timeDate> </timerEventDefinition>

流程开始后,如果还未到2018.02.06 12:13:14,数据会保存在act_ru_timer_job里直到时间达到,flowable会单独启动一个线程执行任务到领导审批节点,act_ru_timer_job里的数据删除。

注意点:

由于flowable会另启一个线程执行job,ThreadLocal相关变量都会获取不到。

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文