Spring--quartz中cronExpression The '*' character is used to specify all values. For example, "*" in the minute field means "every minute". “*”字符被用来指定所有的值.如:”*“在分钟的字段域里表示“每分钟”. The '?' character is allowed for the day-of-month and day-of…
spring 定时任务的 执行时间设置规则 单纯针对时间的设置规则org.springframework.scheduling.quartz.CronTriggerBean允许你更精确地控制任务的运行时间,只需要设置其cronExpression属性.一个cronExpression表达式有至少6个(也可能是7个)由空格分隔的时间元素.从左至右,这些元素的定义如下:1.秒(0–59)2.分钟(0–59)3.小时(0–23)4.月份中的日期(1–31)5.月份(1–12或JAN–DEC)6.星期…