• Spring Boot 定时任务的使用


    本文介绍在 Spring Boot 中怎样使用定时任务,使用很easy,就不做过多说明了。

    以下是代码类:

    package org.springboot.sample.config;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.scheduling.annotation.EnableScheduling;
    import org.springframework.scheduling.annotation.Scheduled;
    
    /**
     * 定时任务配置类
     *
     * @author 单红宇(365384722)
     * @myblog http://blog.csdn.net/catoop/
     * @create 2016年3月21日
     */
    @Configuration
    @EnableScheduling // 启用定时任务
    public class SchedulingConfig {
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        @Scheduled(cron = "0/20 * * * * ?") // 每20秒运行一次
        public void scheduler() {
            logger.info(">>>>>>>>>>>>> scheduled ... ");
        }
    
    }
    
  • 相关阅读:
    sql刷题day03
    sql刷题day2
    sql刷题day1
    Vue学习
    HashMap学习笔记整理
    数组问题(鸽巢原理、数字交换、链表寻环)
    mybatis参数设置问题
    codeforces 327A
    codeforces 189A
    codeforces-455A
  • 原文地址:https://www.cnblogs.com/gccbuaa/p/7270442.html
Copyright © 2020-2023  润新知