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

170627、springboot编程之定时任务

时间:2017-08-21 21:32:47      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:时间   date   ima   spring   color   ges   int   java类   ext   

springboot定时任务,比较简单!

1、编写DemoSchedule.java类

package com.rick.common.schedule;

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

import java.text.SimpleDateFormat;
import java.util.Calendar;

/**
 * Desc :  定时任务
 * User : RICK
 * Time : 2017/8/21 21:16
  */
@Configuration
@EnableScheduling
public class DemoSchedule {

    //cron表达式 秒分时 日月周 年
    @Scheduled(cron = "0/10 * * * * ?") //每10秒执行一次
    public void demoPrint(){
        System.out.println("现在时间:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(Calendar.getInstance().getTime()));
    }
}

2、启动项目测试

技术分享

3、项目清单

技术分享

 

170627、springboot编程之定时任务

标签:时间   date   ima   spring   color   ges   int   java类   ext   

原文地址:http://www.cnblogs.com/zrbfree/p/7406670.html

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