欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot 定时任务

程序员文章站 2022-05-01 12:43:10
...

绪论

最近做项目碰到了定时任务,不知道springboot中是怎么写的,所以查找了一些资料,发现相当简单,记录一下。

代码

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import java.util.Date;

/**
 * 定时任务
 */
@Component
@EnableScheduling
@EnableAsync
public class MyTasks {
    private static final Logger LOGGER = LoggerFactory
            .getLogger(MyTasks.class);

    @Async
    @Scheduled(cron = "0/8 * * * * ?")
    public void task1() {
        LOGGER.info("每8秒执行一次:" + new Date());
    }

    @Async
    @Scheduled(cron = "0/10 * * * * ?")
    public void task2() {
        LOGGER.info("每10秒执行一次:" + new Date());
    }
}

结果

Spring Boot 定时任务

真的是超级简单,附赠在线Cron表达式生成器:http://qqe2.com/cron/index
当时自己写错了表达式,还不明所以。

(若有什么错误,请留言指正,3Q)