定时任务

PPG007 ... 2021-12-26 Less than 1 minute

# 定时任务

# 开启定时任务

在主启动类上添加 @EnableScheduling 注解开启定时任务支持。

# 使用定时任务

在要开启定时执行的方法上添加,括号内为 cron 表达式:

@Scheduled(cron = "0 0 8,12,18,22 * * ?")

Last update: December 26, 2021 13:38
Contributors: PPG007