Spring cron vs normal cron?
我正在尝试在旧版Java / Spring / Hibernate项目中执行cron作业,因此我决定使用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 SUN#1 *
并且myTask
是一个bean,它有一个名为方法doStuff
从单元测试运行时完美的作品。
当我构建和部署时,我从spring得到了bootime异常:
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风格?Spring专用文档只说了“ cron表达式”。
在这种情况下,如何使该cron表达式按预期工作?任何帮助将不胜感激。
目前,我的解决方案是简化该表达式,使其仅在每个星期日运行,并添加一些Java逻辑以计算该月的哪个星期日,并查看是否可行-但这违反了配置方法的目的,并且似乎是一种反模式。
回答:
Spring Scheduled任务与cron表达式的格式不同。
它们不遵循与UNIX cron表达式相同的格式。
只有6个字段:秒,分钟,小时,每月的某天,月份,一周的某天。星号()表示匹配任何一个。 / X表示“每个X”(请参见示例)。一周中的数字天对我不起作用。此外,“ MON-FRI”更容易阅读。以下是一些示例表达式:
“ 0 0 18 * * MON-FRI”是指每个工作日的下午6:00。
“ 0 0 * / 1 * ”表示小时中的每个小时。
“ 0 0 * / 8 * ”表示每小时8小时。
“ 0 0 12 1 * *”表示每月第一天的12:00 PM。
以上是 Spring cron vs normal cron? 的全部内容, 来源链接: utcz.com/qa/398488.html