1.initialDelay :初次执行任务之前需要等待的时间
@Scheduled(initialDelay =5000) public void doSomething() { }
2.fixedDelay:每次执行任务之后间隔多久再次执行该任务。
@Scheduled(fixedDelay=5000) public void doSomething() { // something that should execute periodically }
3.fixedRate:执行频率,每隔多少时间就启动任务,不管该任务是否启动完成
@Scheduled(fixedRate=5000) public void doSomething() { }
4.cron=“”设置时分秒等具体的定时,网上很很多相关列子。
@Scheduled(cron="*/5 * * * * MON-FRI") public void doSomething() { // something that should execute on weekdays only }