spring boot注解之@Scheduled定时任务实现

Posted ㄓㄤㄑㄧㄤ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot注解之@Scheduled定时任务实现相关的知识,希望对你有一定的参考价值。

java实现定时任务一般使用timer,或者使用quartz组件。现在在spring boot提供了更加方便的实现方式。

spring boot已经集成了定时任务。使用@Secheduled注解。

@Component
// 启用定时任务
@EnableScheduling
public class TagPushScheduler {
    private static Logger log = Logger.getLogger(TagPushScheduler.class);

    @Scheduled(cron = "0/10 * * * * ?")
    // 每10秒执行一次
    public void scheduler() {
        System.out.println(">>>>>>>>>>>>> scheduled ...");
    }
}

 

以上是关于spring boot注解之@Scheduled定时任务实现的主要内容,如果未能解决你的问题,请参考以下文章

spring boot @Scheduled未生效原因

Spring boot实现定时任务二:使用注解@scheduled和@EnableScheduling

Spring Boot整合@Scheduled定时计划

spring boot @Scheduled未生效原因以及相关坑

Spring Boot 2.x实战之定时任务调度

Spring Boot 2.x实战之定时任务调度