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

springboot 的定时任务使用

时间:2018-07-03 20:48:03      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:com   time   log   now()   mod   ret   views   nbsp   ble   

定时任务在Spring Boot中的集成

在启动类中加入开启定时任务的注解:

在SpringBoot中使用定时任务相当的简单。首先,我们在启动类中加入@EnableScheduling来开启定时任务。-------------------这是必要的

 

然后:

@Component
public class QuartzService {

//    每分钟启动
    @Scheduled(cron = "0 0/1 * * * ?")
    public void timerToNow(){
        System.out.println("now time:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
    }

}

一定要加入容器中。。。。

 

springboot 的定时任务使用

标签:com   time   log   now()   mod   ret   views   nbsp   ble   

原文地址:https://www.cnblogs.com/xiaohu1218/p/9260461.html

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