我正在使用 Quartz-Scheduler 来执行重复性任务,但我遇到了麻烦。在我的服务器端,我的用户想要指定一些日期范围,例如从 2013-09-27
in 09:00 AM - 12:00 PM
到 2013-09-30
解释:
运行工作从2013-09-27
到2013-09-30
但仅在之间09:00 AM - 12:00 PM
我在为其编写 Cron 表达式时遇到了麻烦,而且我的用户不是技术人员,所以我的用户希望我从两个时间戳值自动创建 Cron 表达式。
请帮帮我。让我知道是否有其他方法。
我在谷歌上看到了很多资源,但我仍然什么也找不到。
链接:
http://quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger
http://quartz-scheduler.org/documentation/quartz-2.x/tutorials/tutorial-lesson-05
unix/linux 中的 cron 表达式是否允许指定确切的开始和结束日期
更新
我写了一个,但它不起作用
|------------------------------------------------------------------|
| Seconds | Minutes | Hours | DayOfMonth | Month | DayOfWeek | Year|
| | | | | | | |
| 0 | 0 | 9-12 | 27-30 | 9 | ? | 2013|
|------------------------------------------------------------------|
试图映射2013-09-27
到2013-09-30
但仅限于之间09:00 AM - 12:00 PM
更新 了我也试过运行它
Trigger trigger = TriggerBuilder.newTrigger().withIdentity(NAME_TRIGGER_TASK_UPDATER, GROUP_TASK_TRIGGER)
.withSchedule(CronScheduleBuilder.cronSchedule("0 0 9-12 19-22 10 ? *")).build();
但它没有给出任何错误,也没有进入我工作的执行方法
cronSchedule("0 0 9-12 ? * ?") throws invalid schedule exception.
下面的代码在不考虑开始和结束日期的情况下运行它。
String startDateStr = "2013-09-27 00:00:00.0";
String endDateStr = "2013-09-31 00:00:00.0";
Date startDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S").parse(startDateStr);
Date endDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S").parse(endDateStr);
CronTrigger cronTrigger = newTrigger()
.withIdentity("trigger1", "testJob")
.startAt(startDate)
.withSchedule(CronScheduleBuilder.cronSchedule("0 0 9-12 * * ?"))
.endAt(endDate)
.build();