springboot2.0添加支持Schedule实现定时任务

2026-02-16 17:44:41

1、新建ScheduleConfig类

springboot2.0添加支持Schedule实现定时任务

2、在启动类开启@EnableScheduling支持开启定时任务

springboot2.0添加支持Schedule实现定时任务

3、新建TestSchedule类

springboot2.0添加支持Schedule实现定时任务

4、@Scheduled定时任务执行方式一fixedDelay  时间间隔 

springboot2.0添加支持Schedule实现定时任务

5、@Scheduled定时任务执行方式二cron 定时执行

springboot2.0添加支持Schedule实现定时任务

6、cron参数

springboot2.0添加支持Schedule实现定时任务

7、测试

springboot2.0添加支持Schedule实现定时任务

猜你喜欢