Table of Contents |
---|
...
Note |
---|
CRON has the following syntax: ┌──────────── second (0 - 59) │ ┌───────────── minute (0 - 59) | │ ┌───────────── hour (0 - 23) | │ │ ┌───────────── day of month (1 - 31) | │ │ │ ┌───────────── month (1 - 12) | │ │ │ │ ┌───────────── day of week (1 - 7: Sunday to Saturday) | │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ * * * * * * Support of the CRON expressions is limited by quartz. In particular, specifying both a day-of-week and a day-of-month values is prohibited (you'll need to use the '*' character in one of these fields). The only note here is that '*' character is used instead of '?' character in compare with quartz. |
...