Cron expression validation tool

Cron expression:
Cron Online Generator

Function introduction


Cron expression explanation

Cron表达式是一个字符串,字符串以 5 or 6 个空格隔开,分为 6 or 7 个域,每一个域代表一个含义,Cron有如下两种语法格式:

(1) Seconds Minutes Hours DayofMonth Month DayofWeek Year

(2) Seconds Minutes Hours DayofMonth Month DayofWeek

I. Structure

corn: sec min hour day of month month day of week year

Part 2: The meaning of each field

Field Allowable values Allowed special characters
Second(s) Integers from 0 to 59 , - * /    四个字符
分( Minutes Integers from 0 to 59 , - * /    四个字符
小时( Hours Integers from 0 to 23 , - * /    四个字符
日期( DayofMonth Integers from 1 to 31 (but consider the number of days in the month). ,- * ? / L W C     八个字符
月份( Month Integers 1-12 or Jan-Dec , - * /    四个字符
星期( DayofWeek 1-7 integers or SUN-SAT (1=SUN) , - * ? / L C #     八个字符
年(可选,留空)( Year 1970~2099 , - * /    四个字符

Cautionary Notes:

Each domain uses numbers, but can also include the following special characters, which have the following meanings:

* : Indicates a match for any value in the domain. 假如在Minutes域使用*, 即表示每分钟都会触发事件。

(2) ?: Can only be used in DayofMonth and DayofWeek fields. It also matches any value of the field, but actually doesn't. 会。因为DayofMonth和DayofWeek会相互影响。例如想在每月的20日触发调度,不管20日到底是星期几,则只能使用如下写法: 13 13 15 20 * ?, 其中最后一位只能用?,而不能使用*,如果使用*表示不管星期几都会触发,实际上并不是这样。

(3) - : Indicates a range. 例如在Minutes域使用5-20,表示从5分到20分钟每分钟触发一次

(4)/: Indicates triggering starting from the specified time, then triggering at fixed intervals. 例如在Minutes域使用5/20,则意味着5分钟触发一次,而25,45等分别触发一次.

(5): Indicating the enumeration values. 例如:在Minutes域使用5,20,则意味着在5和20分每分钟触发一次。

L: Represents the last; can only appear in the DayOfWeek and DayOfMonth fields. 如果在DayofWeek域使用5L,意味着在最后的一个星期四触发。

W: Indicates valid working days (Mon-Fri), appearing only in the DayofMonth field. The system will trigger events on the nearest valid working day to the specified date. 例如:在 DayofMonth使用5W,如果5日是星期六,则将在最近的工作日:星期五,即4日触发。如果5日是星期天,则在6日(周一)触发;如果5日在星期一到星期五中的一天,则就在5日触发。另外一点,W的最近寻找不会跨过月份 。

(8) LW: These two characters can be used together to denote the last working day of a month, i.e., the last Friday.

(9)#: Used to determine the nth occurrence of a weekday in a month, it can only appear in the DayofWeek field. 例如在4#2,表示某月的第二个星期三。

Section 3: Examples of Common Expressions

(0) 0/20 * * * * ? 表示每20秒 调整任务

(1) 0 0 2 1 * ? 表示在每月的1日的凌晨2点调整任务

(2) 0 15 10 ? * MON-FRI 表示周一到周五每天上午10:15执行作业

(3) 0 15 10 ? 6L 2002-2006 表示2002-2006年的每个月的最后一个星期五上午10:15执行作

(4) 0 0 10,14,16 * * ? 每天上午10点,下午2点,4点

(5) 0 0/30 9-17 * * ? 朝九晚五工作时间内每半小时

(6) 0 0 12 ? * WED 表示每个星期三中午12点

(7) 0 0 12 * * ? 每天中午12点触发

(8) 0 15 10 ? * * 每天上午10:15触发

(9) 0 15 10 * * ? 每天上午10:15触发

(10) 0 15 10 * * ? * 每天上午10:15触发

(11) 0 15 10 * * ? 2005 2005年的每天上午10:15触发

(12) 0 * 14 * * ? 在每天下午2点到下午2:59期间的每1分钟触发

(13) 0 0/5 14 * * ? 在每天下午2点到下午2:55期间的每5分钟触发

(14) 0 0/5 14,18 * * ? 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发

(15) 0 0-5 14 * * ? 在每天下午2点到下午2:05期间的每1分钟触发

(16) 0 10,44 14 ? 3 WED 每年三月的星期三的下午2:10和2:44触发

(17) 0 15 10 ? * MON-FRI 周一至周五的上午10:15触发

(18) 0 15 10 15 * ? 每月15日上午10:15触发

(19) 0 15 10 L * ? 每月最后一日的上午10:15触发

(20) 0 15 10 ? * 6L 每月的最后一个星期五上午10:15触发

(21) 0 15 10 ? * 6L 2002-2005 2002年至2005年的每月的最后一个星期五上午10:15触发

(22) 0 15 10 ? * 6#3 每月的第三个星期五上午10:15触发

Note:

Some sub-expressions can include ranges or lists.

For example, the sub-expression (day (week)) can be "MON-FRI", "MON, WED, FRI", "MON-WED, SAT".

The "*" character represents all possible values.

Therefore, "*" in the sub-expression (month) signifies every month, and "*" in the sub-expression (day [weekday]) indicates every day of the week.


“/”字符用来指定数值的增量
例如:在子表达式(分钟)里的“0/15”表示从第0分钟开始,每15分钟
在子表达式(分钟)里的“3/20”表示从第3分钟开始,每20分钟(它和“3,23,43”)的含义一样


“?”字符仅被用于天(月)和天(星期)两个子表达式,表示不指定值
当2个子表达式其中之一被指定了值以后,为了避免冲突,需要将另一个子表达式的值设为“?”

“L” 字符仅被用于天(月)和天(星期)两个子表达式,它是单词“last”的缩写
但是它在两个子表达式里的含义是不同的。
在天(月)子表达式中,“L”表示一个月的最后一天
在天(星期)自表达式中,“L”表示一个星期的最后一天,也就是SAT

If there is specific content before the "L," it assumes a different meaning.

例如:“6L”表示这个月的倒数第6天,“FRIL”表示这个月的最一个星期五
注意:在使用“L”参数时,不要指定列表或范围,因为这会导致问题

You recently used:

收藏: favorite Menu QQ