ChatGPT解决这个技术问题 Extra ChatGPT

Spring cron vs normal cron?

I'm trying to get a cron job working within a legacy Java/Spring/Hibernate project, so I decided to use the spring scheduler.

I want myTask.doStuff to run at 12:00 on the first Sunday of every month.

In my application-context.xml I've configured my task scheduler like:

<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"/>

with the problem cron expression itself being the: 0 0 12 ? 1/1 SUN#1 *

and myTask is a bean, which has a method called doStuff that works perfectly when run from unit tests.

When I build and deploy I get a bootime exception from spring:

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)

Given that i'm using cron expressions for the first time, my first assumption was that I was doing something wrong, but I double checked using cronmaker and it gave me the same result.

All the documentations says: A cron expression is a string consisting of six or seven subexpressions (fields).1

despite this I tried knocking off the 7th element(year) since it's not in any of the examples, and got a different error message:

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"

... does org.springframework.scheduling support a different flavor of cron from everything else? the spring-specific documentation just says 'cron expressions'.

How can I get this cron expression to work as expected in this context? Any help at all would be appreciated.

At the moment my solution would be to simplify this expression to just run every Sunday, and prepend some Java logic to calculate which Sunday of the month it is, and see if that works - but that sort of defeats the purpose of the configuration approach and seems like an antipattern.

Have you tried 0 0 12 ? * SUN#1? (without the last *)
Yes, I got a different error message - I mention it where I say "despite this I tried knocking off the 7th element" and list the error message. :)
Spring scheduler does not support too rich cron expressionns(not sure it it's the case here), like Quartz Scheduler does. Try it with quartz
@Evgeni So there are different 'flavors' of CRON then? Is SpringScheduler's Cron not expressive enough to do this job? (Don't want to switch dependencies if I can help it)

2
2240

Spring Scheduled tasks are not in the same format as cron expressions.

They don't follow the same format as UNIX cron expressions.

There are only 6 fields:

second,

minute,

hour,

day of month,

month,

day(s) of week.

Asterisk (*) means match any. */X means "every X" (see examples).

Numeric days of the week do not work for me. Besides, "MON-FRI" is much easier to read. Here are some example expressions:

"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. 

Here you can find some additional information.

Also you may find the spring documentation useful.


Think this is the updated 2nd URL: docs.spring.io/spring-framework/docs/current/…
There is one more discrepancy - in spring, 'day' and 'day-of-week' field are combined by AND-logic, but in cron it is OR
Do you guys know if is it possible to convert a cron expression into a spring format?
You can also add a timezone expression to spring cron
flawless answer!
g
gic186

Taking some note from: https://www.baeldung.com/cron-expressions

A Spring Scheduled tasks is like this:

1 2 3 4 5 6 Index
- - - - - -
* * * * * * command to be executed
- - - - - -
| | | | | | 
| | | | | ------- Day of week (MON - SUN)
| | | | --------- Month (1 - 12)
| | | ----------- Day of month (1 - 31)
| |-------------- Hour (0 - 23)
| --------------- Minute (0 - 59)
----------------- Seconds (0 - 59)

From: https://www.cyberciti.biz/faq/how-do-i-add-jobs-to-cron-under-linux-or-unix-oses/

A Linux Cron job is like this:

1 2 3 4 5 Index
- - - - -
* * * * * command to be executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)

Side note:

Some article said it is possible to have a 7 optional param which is year , I have tried using latest spring and it show error, so I don't think it is working.

If your Linux cron job expression is simple enough, seems like it is possible to just put an 0 in front and it will convert to the spring scheduled tasks expression E.g. Every 5 minutes */5 * * * * Linux cron job 0 */5 * * * * Spring schedule tasks

E.g. Every 5 minutes */5 * * * * Linux cron job 0 */5 * * * * Spring schedule tasks

*/5 * * * * Linux cron job

0 */5 * * * * Spring schedule tasks

Bonus: Spring Schedule Cron Generator

Click on Show code snippet Click on Run Code snippet Have fun!

$('.select2').select2({ width: '100%' }); //// Init //////////// $dropdown = $("#secondsSelect"); for (let i = 1; i < 60; i++) { $dropdown.append($("

Spring Schedule Cron Generator

Seconds:
Minutes:
Hours:
Days of month:
Months:
Weekday:
Result: With a bit of seperation for better viewing:


Another alternative is JobRunr: you can annotate all your CRON methods with an annotation: @Recurring(id = "my-recurring-job", cron = "*/5 * * * *"). The biggest benefit is that it comes with a handy dashboard that shows whether your CRON job succeeded.