Spring @Scheduled定时任务的fixedRate,fixedDelay,cron的作用和不同

1.cron --@Scheduled(cron=“0/5 * * * *?”)

当时间达到设置的时间会触发事件。上面那个例子会每5秒执行一次。

2018/1/4 14:27:30
2018/1/4 14:27:35
2018/1/4 14:27:40
2018/1/4 14:27:45
2018/1/4 14:27:50

2.fixedRate --@Scheduled(fixedRate=2000)
表示任务执行之间的时间间隔,具体是指两次任务的开始时间间隔,即第二次任务开始时,第一次任务可能还没结束

3.fixedDelay --@Scheduled(fixedDelay=2000)
表示任务执行之间的时间间隔,具体是指本次任务结束到下次任务开始之间的时间间隔。

你可能感兴趣的:(Spring)