在启动类加上

@EnableScheduling	//开启定时注解功能

执行具体的定时任务
在方法上加注解

//cron表达式
@Scheduled(cron="")

image.png

Q.E.D.


如人饮水、冷暖自知