gpt4 book ai didi

java - Spring cron vs 普通 cron?

转载 作者:IT老高 更新时间:2023-10-28 13:46:19 25 4
gpt4 key购买 nike

我正在尝试在遗留 Java/Spring/Hibernate 项目中工作,因此我决定使用 spring 调度程序。

我希望 myTask.doStuff 在每个月的第一个星期日的 12:00 运行。

在我的 application-context.xml 中,我配置了我的任务调度程序,例如:

<task:scheduled-tasks scheduler="MyTaskScheduler">
<task:scheduled ref="myTask" method="doStuff" cron="0 0 12 ? 1/1 SUN#1 *"/> <!-- Every first Sundy of the month -->
</task:scheduled-tasks>

<task:scheduler id="MyTaskScheduler" pool-size="10"/>

问题 cron 表达式本身是:0 0 12 ? 1/1 太阳#1 *

myTask 是一个 bean,它有一个名为 doStuff 的方法,当从单元测试运行时它可以完美运行。

当我构建和部署时,我从 spring 中得到一个 boottime 异常:

Caused by: java.lang.IllegalArgumentException: cron expression must consist of 6 fields (found 7 in 0 0 12 ? 1/1 SUN#1 *)
at org.springframework.scheduling.support.CronSequenceGenerator.parse(CronSequenceGenerator.java:233)
at org.springframework.scheduling.support.CronSequenceGenerator.<init>(CronSequenceGenerator.java:81)
at org.springframework.scheduling.support.CronTrigger.<init>(CronTrigger.java:54)
at org.springframework.scheduling.support.CronTrigger.<init>(CronTrigger.java:44)
at org.springframework.scheduling.config.ScheduledTaskRegistrar.afterPropertiesSet(ScheduledTaskRegistrar.java:129)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1477)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1417)

鉴于我是第一次使用 cron 表达式,我的第一个假设是我做错了什么,但我使用 cronmaker 进行了仔细检查它给了我同样的结果。

所有文档都说:cron 表达式是由六个或七个子表达式(字段)组成的字符串。 1

尽管如此,我尝试删除第 7 个元素(年份),因为它不在任何示例中,并得到了不同的错误消息:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.scheduling.config.ScheduledTaskRegistrar#0': Invocation of init method failed; nested exception is java.lang.NumberFormatException: For input string: "0#1"

... org.springframework.scheduling 是否支持与其他所有内容不同的 cron 风格? the spring-specific documentation只是说'cron表达式'。

如何让这个 cron 表达式在这种情况下按预期工作?任何帮助都将不胜感激。

目前我的解决方案是将这个表达式简化为只在每个星期天运行,并预先添加一些 Java 逻辑来计算它是一个月中的哪个星期天,看看这是否有效 - 但这有点违背了配置方法,似乎是一种反模式。

最佳答案

Spring 计划任务与 cron 表达式的格式不同

它们不遵循与 UNIX cron 表达式相同的格式。

只有6个字段:

  • 第二,
  • 分钟,
  • 小时,
  • 一个月中的某天,
  • 月,
  • 星期几。

星号 (*) 表示匹配任何内容。*/X 表示“每 X”(参见示例)。

一周中的数字天数不适合我。此外,“MON-FRI”更容易阅读。以下是一些示例表达式:

"0 0 18 * * MON-FRI" means every weekday at 6:00 PM. 

"0 0 */1 * * *" means every hour on the hour.

"0 0 */8 * * *" means every 8 hours on the hour.

"0 0 12 1 * *" means 12:00 PM on the first day of every month.

在这里你可以找到一些 additional information .

您还可以找到 spring documentation useful .

关于java - Spring cron vs 普通 cron?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30887822/

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