maven依赖: 使用时要注意spring版本,其中3.2.x之前只支持1.8.x之前的版本,对应spring配置也会有不同。 自定义job: spring-quartz.xml配置: web.xml当中配置,不要把这个配置信息写入applicationContext.xml,会出现重复执行的情况。 ...
分类:
编程语言 时间:
2018-01-20 00:58:21
阅读次数:
248
对collections相关方法进行学习和测试: ...
分类:
编程语言 时间:
2017-02-25 15:48:25
阅读次数:
193
begin -- create_schedule dbms_scheduler.create_schedule(schedule_name => 's_change_send_dates_statue', start_date => SYSDATE, repeat_interval => 'FREQ ...
分类:
数据库 时间:
2016-09-11 12:58:04
阅读次数:
243
Job类 /** * Define the comparator that controls * how the keys are sorted before they * are passed to the {@link Reducer}. * @param cls the raw compara... ...
分类:
其他好文 时间:
2016-08-08 09:55:23
阅读次数:
279
很多时候,我们想像Activiti定时开始事件一样,加入一些自己的定时流程。但定时开始事件有很大的局限性,比如时间、循环次数、循环间隔是必须要指定的,这对于一些根据实际状况,计算时间并启动的流程是无法处理的。
通过一系列的源码分析,最终找到了手动建立Job的方式方法。。。...