java spring boot Schedule定时任务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java spring boot Schedule定时任务相关的知识,希望对你有一定的参考价值。
格式: [秒] [分] [小时] [日] [月] [周] [年]
//每天早上八点执行
@Scheduled(cron = "0 0 8 ?")// 每五分钟执行一次
@Scheduled(cron = "0 0/5 ")
以上是关于java spring boot Schedule定时任务的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot系列:Spring Boot定时任务Spring Schedule
Spring Boot 中的 @Schedule 不会在我们提供的日期运行