码迷,mamicode.com
首页 > 编程语言 > 详细

springBoot+Scheduled

时间:2019-10-19 11:14:23      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:效果   java   开启   port   cron   conf   led   not   esc   

import java.time.LocalDateTime;

import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
@Configuration      //1.主要用于标记配置类,兼备Component的效果。
@EnableScheduling   // 2.开启定时任务
public class SaticScheduleTask {
    //3.添加定时任务
    @Scheduled(cron = "0/60 * * * * ?")
    //或直接指定时间间隔,例如:5秒
    //@Scheduled(fixedRate=5000)
    private void configureTasks() {
        System.err.println("执行静态定时任务时间: " + LocalDateTime.now());
       
    }
}

 

springBoot+Scheduled

标签:效果   java   开启   port   cron   conf   led   not   esc   

原文地址:https://www.cnblogs.com/dadqw/p/11703171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!