gpt4 book ai didi

java - 特定日期两周一次的 Quartz cron 表达式

转载 作者:行者123 更新时间:2023-11-30 08:02:47 26 4
gpt4 key购买 nike

我正在尝试创建每两周在给定日期运行一次的 Quartz cron 表达式

例如

每两周一次的周一

并使用下面的表达式

0 0 6 ? * 1#2,1#4

但不知何故我遇到了以下错误

Support for specifying multiple "nth" days is not implemented.

最佳答案

这对于常规的 cron 作业来说也是非常困难的,我认为它无法在“正常”的 cron 表达式中实现。

您可以完全跳过 cron 并使用 Trigger That Executes Every 2 Weeks

trigger = newTrigger()
.withIdentity("trigger3", "group1")
.startAt(tomorrowAt(15, 0, 0) // 15:00:00 tomorrow
.withSchedule(calendarIntervalSchedule()
.withIntervalInWeeks(2)) // interval is set in calendar weeks
.build();

关于java - 特定日期两周一次的 Quartz cron 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36641783/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com