首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
fixedrate专题
Spring @Scheduled定时任务的fixedRate,fixedDelay,cron执行差异
Spring @Scheduled定时任务的fixedRate,fixedDelay,cron执行差异 import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import org.springframework.scheduling.annotation.Schedu
阅读更多...
spring定时器fixedRate的简述
@Scheduled(fixedRate = 5000) 这个注解在容器启动时便会生效,5秒执行一次任务.如果第一次任务时间为7秒从10:00执行到10:07,那么第二次任务为2秒的话,则从10:07执行到10:10(其中1秒为任务的轮询时间). 如果第一次任务为19秒从10:00执行到10:19,那么第二次任务为2秒从10:19执行到10:19执行到10:25(其中4秒为任务的轮询时间)
阅读更多...