首页 > 技术文章 > @Scheduled 定时任务注解不能运行

lidedong 2021-04-22 11:19 原文

定时任务类

上加

@Component 注解
定时任务方法上加

@Scheduled(cron = "0/20 * * * * ?") 注解
但是定时任务不能调起

经过测试还需要在spring boot 启动类上加

@EnableScheduling 注解
才启动成功

推荐阅读