java spring boot Schedule定时任务

格式: [秒] [分] [小时] [日] [月] [周] [年]

//每天早上八点执行
@Scheduled(cron = "0 0 8 ?")

// 每五分钟执行一次
@Scheduled(cron = "0 0/5 ")

猜你喜欢

转载自blog.51cto.com/jinliang/2480415