spring Cloud 定时任务 @Scheduled

详见:http://www.cnblogs.com/dannyyao/p/7691871.html

 

本文主要记录:如何使用spring的@Scheduled注解实现定时作业,基于spring cloud

1)pom.xml 文件引入相关依赖、spring-maven插件,如果是已有项目不需要引入


         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0

    com.vip.qa
    springboot-demo
    1.0-SNAPSHOT
    jar

   
        org.springframework.boot
        spring-boot-starter-parent
        1.5.2.RELEASE
       
   

   
        UTF-8
        1.8
   

   
       
            org.springframework.boot
            spring-boot-starter-web
       

   

   
       
           
                org.springframework.boot
                spring-boot-maven-plugin
           

       

   

 

2)应用程序入口类Application

@SpringBootApplication:等于原来的 (默认属性)@Configuration + @EnableAutoConfiguration + @ComponentScan

@EnableScheduling:启用定时任务

package com.vip.qa.vop;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;

/**
 * Created by danny.yao on 2017/10/19.
 */
@SpringBootApplication
@EnableScheduling
public class Application {
    public static void main(String[] args){
        SpringApplication.run(Application.class, args);
    }
}

3)定时任务类

@Component:类注册成bean

@Scheduled:定时任务,可选固定时间、cron表达式等类型

cron表达式 每位的意义:Seconds Minutes Hours DayofMonth Month DayofWeek

package com.vip.qa.vop.service;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * Created by danny.yao on 2017/10/19.
 */
@Component
public class ScheduledTasks {

    private static final Logger logger = LoggerFactory.getLogger(ScheduledTasks.class);
    private static final SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    @Scheduled(fixedRate = 5000)
    public void scheduledDemo(){
        logger.info("scheduled - fixedRate - print time every 5 seconds:{}", formate.format(new Date()) );
    }

    /**
     "0/5 * *  * * ?"   每5秒触发
     "0 0 12 * * ?"    每天中午十二点触发
     "0 15 10 ? * *"    每天早上10:15触发
     "0 15 10 * * ?"    每天早上10:15触发
     "0 15 10 * * ? *"    每天早上10:15触发
     "0 15 10 * * ? 2005"    2005年的每天早上10:15触发
     "0 * 14 * * ?"    每天从下午2点开始到2点59分每分钟一次触发
     "0 0/5 14 * * ?"    每天从下午2点开始到2:55分结束每5分钟一次触发
     "0 0/5 14,18 * * ?"    每天的下午2点至2:55和6点至6点55分两个时间段内每5分钟一次触发
     "0 0-5 14 * * ?"    每天14:00至14:05每分钟一次触发
     "0 10,44 14 ? 3 WED"    三月的每周三的14:10和14:44触发
     "0 15 10 ? * MON-FRI"    每个周一、周二、周三、周四、周五的10:15触发
     */
    @Scheduled(cron="0/10 * *  * * ?")
    public void scheduledCronDemo(){

logger.info("--------------打印每10秒就输出时间定时任务scheduled - cron - print time every 10 seconds:{}----------------", formate.format(new Date()) );

    }
}

 

4)运行入口类,可以看到结果

spring Cloud 定时任务 @Scheduled_第1张图片

你可能感兴趣的:(spring Cloud 定时任务 @Scheduled)