格式: [秒] [分] [小时] [日] [月] [周] [年]
//每天早上八点执行@Scheduled(cron = "0 0 8 ?") // 每五分钟执行一次@Scheduled(cron = "0 0/5 ")
//每天早上八点执行@Scheduled(cron = "0 0 8 ?")
// 每五分钟执行一次@Scheduled(cron = "0 0/5 ")
java spring boot Schedule定时任务
原文:https://blog.51cto.com/jinliang/2480415