springboot定时发送短信_Spring Boot 定时任务

本文主要介绍了Spring Boot中使用@Scheduled创建定时任务。我们在编写Spring Boot应用中经常会遇到这样的场景,比如:我需要定时地发送一些短信、邮件之类的操作,也可能会定时添加或者同步一些数据等。

在Spring Boot中编写定时任务是非常简单的事情。

①在springboot启动上面加入 @EnableScheduling注释,

@SpringBootApplication

@EnableScheduling

public class SpringBootTaskApplication {

public static void main(String[] args) {

SpringApplication.run(SpringBootTaskApplication.class, args);

}

}

②编写类和方法。我们在我们真正需要执行的方法上添加了@Scheduled标注,表示这个方法是需要定时执行的。 @Scheduled注解的方法不能有返回值,并且不能有形参

package com.example.task.task;

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 ningcs on 17/3/27.

*/

@Component

public class ScheduledTasks {

private static final Logger logger = LoggerFactory.getLogger(ScheduledTasks.class);

private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

private Integer count0 = 1;

private Integer count1 = 1;

private Integer count2 = 1;

/**

* 只需在这里调用service即可。

*

* 每隔十秒进行一次

*/

@Scheduled(cron ="*/10 * * * * *")

public void reportCurrentTime() throws InterruptedException {

logger.info("业务层代码");

logger.info(String.format("---第%s次执行,当前时间为:%s", count0++, dateFormat.format(new Date())));

}

/**

* 只需在这里调用service即可。

*

* 每隔1秒进行一次

*/

@Scheduled(fixedRate=1000)

public void getCurrentTime() throws InterruptedException {

logger.info("1秒执行一次");

logger.info(String.format("---第%s次执行,当前时间为:%s", count0++, dateFormat.format(new Date())));

}

/**

* 只需在这里调用service即可。

*

* 每隔1秒进行一次

*/

@Scheduled(fixedDelay=1000)

public void CurrentTime() throws InterruptedException {

Thread.sleep(5000);

logger.info("隔5秒执行一次");

logger.info(String.format("---第%s次执行,当前时间为:%s", count0++, dateFormat.format(new Date())));

}

}

注意说明:

在@Scheduled标注中,我们使用了三种方式来实现了同一个功能:每隔5秒钟记录一次当前的时间:

fixedRate = 5000表示每隔5000ms,Spring scheduling会调用一次该方法,不论该方法的执行时间是多少

fixedDelay = 5000表示当方法执行完毕5000ms后,Spring scheduling会再次调用该方法

cron = "5 * * * * * *"提供了一种通用的定时任务表达式,这里表示每隔5秒执行一次,更加详细的信息可以参考cron表达式。

*CRON表达式 含义

"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触发

*/

CRON位数含义:

* 第一位,表示秒,取值0-59

* 第二位,表示分,取值0-59

* 第三位,表示小时,取值0-23

* 第四位,日期天/日,取值1-31

* 第五位,日期月份,取值1-12

* 第六位,星期,取值1-7,星期一,星期二...,注:不是第1周,第二周的意思

另外:1表示星期天,2表示星期一。

* 第7为,年份,可以留空,取值1970-2099

cron中,还有一些特殊的符号,含义如下:

(*)星号:可以理解为每的意思,每秒,每分,每天,每月,每年...

(?)问号:问号只能出现在日期和星期这两个位置,表示这个位置的值不确定,每天3点执行,所以第六位星期的位置,我们是不需要关注的,就是不确定的值。同时:日期和星期是两个相互排斥的元素,通过问号来表明不指定值。比如,1月10日,比如是星期1,如果在星期的位置是另指定星期二,就前后冲突矛盾了。

(-)减号:表达一个范围,如在小时字段中使用“10-12”,则表示从10到12点,即10,11,12

(,)逗号:表达一个列表值,如在星期字段中使用“1,2,4”,则表示星期一,星期二,星期四

(/)斜杠:如:x/y,x是开始值,y是步长,比如在第一位(秒) 0/15就是,从0秒开始,每15秒,最后就是0,15,30,45,60

在线Cron表达式生成器

github地址:

https://github.com/ningcs/SpringBootTask

你可能感兴趣的:(springboot定时发送短信_Spring Boot 定时任务)