如何编写 cron 表达式,在两个时间点触发

发布于 2024-12-21 07:11:07 字数 502 浏览 1 评论 0原文

每月周一至周五上午 7:10 和周六上午 7:20 触发。

  1. 0 10 7 ? * 周二至周五
  2. 0 20 7 ? * SAT

如何编写一个 cron 表达式来实现。有没有办法合并1和2?

创建其他触发器有点难看。

目前,我的类扩展了 org.quartz.CronTrigger 。xml 文件如下所示。

<bean id="tradeReportJobTrigger" parent="abstractTrigger">
    <property name="job" ref="tradeReportJob"/>
    <property name="cronExpression" value="0 0 9 ? * TUE-SAT"/>
</bean> 

谢谢。

Fire at 7:10am on MON-FRI and at 7:20am on SAT every month.

  1. 0 10 7 ? * TUE-FRI
  2. 0 20 7 ? * SAT

How to write one cron expression to implement.Is there any approach to merge 1 and 2?

Create other trigger is a bit ugly.

Currently,my class extends org.quartz.CronTrigger .And the xml file like below.

<bean id="tradeReportJobTrigger" parent="abstractTrigger">
    <property name="job" ref="tradeReportJob"/>
    <property name="cronExpression" value="0 0 9 ? * TUE-SAT"/>
</bean> 

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谷夏 2024-12-28 07:11:07

根据我对 cron 的理解,我认为您需要这两个条目来完成您想要的操作。

From my understanding of cron I think you'll need the two entries to do what you want.

梦里兽 2024-12-28 07:11:07

从描述 Cron 表达式的 Quartz Scheduler 2.0 API 页面来看,Quartz Scheduler 中的答案与常规 cron 中的答案类似:

  • 否;您不能将这两个表达式合并为一个表达式。

Judging from the Quartz Scheduler 2.0 API page describing Cron Expressions, the answer in Quartz Scheduler is similar to the answer in regular cron:

  • No; you cannot combine the two expressions into one single one.
池予 2024-12-28 07:11:07

不可能将其组合成单个表达式。添加第二个 CronTrigger Bean 引用同一个作业怎么样?

It's not possible to combine this into a single expression. How about adding a second CronTrigger Bean refering to the same job?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文