Spring cron与普通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表达式本身是: *
并且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风格?春季专用文档只说了“ 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。
在这里您可以找到一些其他信息:http :
//docs.spring.io/spring/docs/current/javadoc-
api/org/springframework/scheduling/support/CronSequenceGenerator.html
- 另外,您可能会发现spring文档很有用:[https](https://docs.spring.io/spring-
- framework/docs/current/spring-framework-reference/integration.html#scheduling)
- //docs.spring.io/spring-framework/docs/current/spring-framework-
reference/integration.html#scheduling
以上是 Spring cron与普通cron? 的全部内容, 来源链接: utcz.com/qa/418816.html