@Scheduled注解的使用这里不详细说明,直接对8个参数进行讲解。
该参数接收一个cron表达式,cron表达式是一个字符串,字符串以5或6个空格隔开,分开共6或7个域,每一个域代表一个含义。
cron表达式语法
[秒] [分] [小时] [日] [月] [周] [年]
注:[年]不是必须的域,可以省略[年],则一共6个域。所以6域表达式的最后一个字段是周,不是年。
序号 说明 必填 允许填写的值 允许的通配符
1 秒 是 0-59 , - * /
2 分 是 0-59 , - * /
3 时 是 0-23 , - * /
4 日 是 1-31 , - * ? / L W
5 月 是 1-12 / JAN-DEC , - * /
6 周 是 1-7 or SUN-SAT , - * ? / L #
7 年 否 1970-2099 , - * /
通配符说明:
每隔1分钟执行一次:0 */1 * * * ?
每天23点执行一次:0 0 23 * * ?
每天凌晨1点执行一次:0 0 1 * * ?
每月1号凌晨1点执行一次:0 0 1 1 * ?
每月最后一天23点执行一次:0 0 23 L * ?
每周星期天凌晨1点实行一次:0 0 1 ? * L
在26分、29分、33分执行一次:0 26,29,33 * * * ?
每天的0点、13点、18点、21点都执行一次:0 0 0,13,18,21 * * ?
cron表达式使用占位符
另外,cron属性接收的cron表达式支持占位符。eg:
配置文件:
time:
cron: */5 * * * * *
interval: 5
每5秒执行一次:
@Scheduled(cron="${time.cron}")
void testPlaceholder1() {
System.out.println("Execute at " + System.currentTimeMillis());
}
@Scheduled(cron="*/${time.interval} * * * * *")
void testPlaceholder2() {
System.out.println("Execute at " + System.currentTimeMillis());
}
时区,接收一个java.util.TimeZone#ID。cron表达式会基于该时区解析。默认是一个空字符串,即取服务器所在地的时区。比如我们一般使用的时区Asia/Shanghai。该字段我们一般留空。
上一次执行完毕时间点之后多长时间再执行。如:
@Scheduled(fixedDelay = 5000) //上一次执行完毕时间点之后5秒再执行
与 3. fixedDelay 意思相同,只是使用字符串的形式。唯一不同的是支持占位符。如:
@Scheduled(fixedDelayString = “5000”) //上一次执行完毕时间点之后5秒再执行
占位符的使用(配置文件中有配置:time.fixedDelay=5000):
@Scheduled(fixedDelayString = "${time.fixedDelay}")
void testFixedDelayString() {
System.out.println("Execute at " + System.currentTimeMillis());
}
上一次开始执行时间点之后多长时间再执行。如:
@Scheduled(fixedRate = 5000) //上一次开始执行时间点之后5秒再执行
与 5. fixedRate 意思相同,只是使用字符串的形式。唯一不同的是支持占位符。
第一次延迟多长时间后再执行。如:
@Scheduled(initialDelay=1000, fixedRate=5000) //第一次延迟1秒后执行,之后按fixedRate的规则每5秒执行一次
与 7. initialDelay 意思相同,只是使用字符串的形式。唯一不同的是支持占位符。
spring5-context
@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Repeatable(Schedules.class)
public @interface Scheduled {
/**
* A cron-like expression, extending the usual UN*X definition to include triggers
* on the second as well as minute, hour, day of month, month and day of week.
* E.g. {@code "0 * * * * MON-FRI"} means once per minute on weekdays
* (at the top of the minute - the 0th second).
* @return an expression that can be parsed to a cron schedule
* @see org.springframework.scheduling.support.CronSequenceGenerator
*/
String cron() default "";
/**
* A time zone for which the cron expression will be resolved. By default, this
* attribute is the empty String (i.e. the server's local time zone will be used).
* @return a zone id accepted by {@link java.util.TimeZone#getTimeZone(String)},
* or an empty String to indicate the server's default time zone
* @since 4.0
* @see org.springframework.scheduling.support.CronTrigger#CronTrigger(String, java.util.TimeZone)
* @see java.util.TimeZone
*/
String zone() default "";
/**
* Execute the annotated method with a fixed period in milliseconds between the
* end of the last invocation and the start of the next.
* @return the delay in milliseconds
*/
long fixedDelay() default -1;
/**
* Execute the annotated method with a fixed period in milliseconds between the
* end of the last invocation and the start of the next.
* @return the delay in milliseconds as a String value, e.g. a placeholder
* or a {@link java.time.Duration#parse java.time.Duration} compliant value
* @since 3.2.2
*/
String fixedDelayString() default "";
/**
* Execute the annotated method with a fixed period in milliseconds between
* invocations.
* @return the period in milliseconds
*/
long fixedRate() default -1;
/**
* Execute the annotated method with a fixed period in milliseconds between
* invocations.
* @return the period in milliseconds as a String value, e.g. a placeholder
* or a {@link java.time.Duration#parse java.time.Duration} compliant value
* @since 3.2.2
*/
String fixedRateString() default "";
/**
* Number of milliseconds to delay before the first execution of a
* {@link #fixedRate()} or {@link #fixedDelay()} task.
* @return the initial delay in milliseconds
* @since 3.2
*/
long initialDelay() default -1;
/**
* Number of milliseconds to delay before the first execution of a
* {@link #fixedRate()} or {@link #fixedDelay()} task.
* @return the initial delay in milliseconds as a String value, e.g. a placeholder
* or a {@link java.time.Duration#parse java.time.Duration} compliant value
* @since 3.2.2
*/
String initialDelayString() default "";
}
@Component
@Configurable
@EnableScheduling
public class MqTask {
/**
* 1.1固定频率开始,任务时间小于频率
* 每次执行任务,都会使用新的线程
* 任务结束后,线程休息,到达下一个开始时间,新的线程开始执行任务
* 真实频率5秒,和预期相同
*/
@Scheduled(cron = "0/5 * * * * *")
public void cron() {
System.out.println(new Date()+ " cron begin, thread=" + Thread.currentThread().getName());
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(new Date()+ " cron end, thread=" + Thread.currentThread().getName());
}
/*
Sat Oct 12 10:04:40 CST 2019 cron begin, thread=task-scheduler-4
Sat Oct 12 10:04:43 CST 2019 cron end, thread=task-scheduler-4
Sat Oct 12 10:04:45 CST 2019 cron begin, thread=task-scheduler-2
Sat Oct 12 10:04:48 CST 2019 cron end, thread=task-scheduler-2
Sat Oct 12 10:04:50 CST 2019 cron begin, thread=task-scheduler-6
*/
/**
* 1.2固定频率开始,任务时间大于频率
* 任务结束后,线程休息,中间会错过一个开始时间
* 到达下一个开始时间,新的线程开始执行任务
* 真实频率10秒,和预期不同,是预期的两倍
* 解决:控制任务时间,分页查询数据,减少处理数据,就减少了任务时间
*/
@Scheduled(cron = "0/5 * * * * *")
public void cron2() {
System.out.println(new Date()+ " cron2 begin, thread=" + Thread.currentThread().getName());
try {
Thread.sleep(7000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(new Date()+ " cron2 end, thread=" + Thread.currentThread().getName());
}
/*
Sat Oct 12 10:04:40 CST 2019 cron2 begin, thread=task-scheduler-3
Sat Oct 12 10:04:47 CST 2019 cron2 end, thread=task-scheduler-3
Sat Oct 12 10:04:50 CST 2019 cron2 begin, thread=task-scheduler-4
*/
/**
* 2.固定延迟开始,上次任务结束后,固定延时5秒,开始下一个任务
* 任务结束后,线程休息,中间会错过一个开始时间
* 到达下一个开始时间,新的线程开始执行任务
* 真实频率8秒,和预期不同,大于预期时间
* 解决:控制任务时间,分页查询数据,减少处理数据,就减少了任务时间
*/
@Scheduled(fixedDelay = 5000)
public void fixedDelay() {
System.out.println(new Date()+ " fixedDelay begin, thread=" + Thread.currentThread().getName());
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(new Date()+ " fixedDelay end, thread=" + Thread.currentThread().getName());
}
/*
Sat Oct 12 10:04:38 CST 2019 fixedDelay begin, thread=task-scheduler-1
Sat Oct 12 10:04:41 CST 2019 fixedDelay end, thread=task-scheduler-1
at Oct 12 10:04:46 CST 2019 fixedDelay begin, thread=task-scheduler-1
*/