Spring boot创建定时任务

Posted 湾岸技研 Wangan Tech

tags:

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

基于spring boot的应用创建定时任务不要太简单,给一个类加上@Configuration @EnableScheduling注解,然后给该类需要定时执行的方法加上@Scheduled(cron = "${case.phase.cron}")注解。就OK了。

${case.phase.cron}表示case.phase.cron从应用配置文件application.properties里取,或者从config-server里取。

import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;

/**
 * 定时任务
 * 去调用办件状态查询标准接口
 * */
@Configuration
@EnableScheduling
public class CasePhaseTaskService {
    private static final Logger LOGGER = LoggerFactory.getLogger(CasePhaseTaskService.class);
    @Scheduled(cron = "${case.phase.cron}")
    public void execScheduledTask() {
        LOGGER.info("task开始...");

        LOGGER.info("task结束!");
    }
}

 

以上是关于Spring boot创建定时任务的主要内容,如果未能解决你的问题,请参考以下文章

Spring boot创建定时任务

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

spring boot 学习定时任务 @Scheduled

Spring Boot学习进阶笔记-添加定时任务

spring boot 几种定时任务的实现方式

Spring Boot 定时任务单线程和多线程