时间表的石英字符串,其中还包括执行分钟
我正在尝试按照以下时间表建造一根石英弦。有人可以帮我完成这件事吗?
9:15 至 9:15 之间每 3 分钟一次 周一至周五23:59
提前致谢
I am trying to construct a quartz string for below schedule. Can some one help me in getting this done?
for every 3 minutes between 9:15 to
23:59 during Monday to Friday
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过 SimpleTrigger 完成(每 3 分钟一次)。您只需要使用 ICalendar 限制时间和日期即可。添加 DailyCalendar(09:15-23:59)和 WeeklyCalendar(周一至周五)将为您提供所需的排除项(示例时间当然会颠倒)。
如果您使用 DailyCalendar 来帮助限制小时范围,您也可以使用 CronTrigger 来实现此目的。
This can be done with SimpleTrigger (every 3 minutes). You just need to restrict the time and day with an ICalendar. Adding a DailyCalendar (09:15-23:59) and a WeeklyCalendar (Mon-Fri) will give you needed exclusions (example times would be inverted of course).
You could also achieve this with CronTrigger if you'd use DailyCalendar to help restrict the hour range.
我没有听过 Marko 的建议,我已经创建了自己的机制来解析这些字符串并将其转换为 cron 表达式。只要有时间,我就会将其发送给quartz,
谢谢您的帮助。
I've not tred Marko's suggestions, I've already created my own mechanism to parse these string and convert it into cron expression. I will send this to quartz whenever I find time
Thanks for the help.