Spring Boot 与 Kotlin 定时任务(Scheduling Tasks)

在编写Spring Boot应用中会遇到这样的场景,比如:需要定时地发送一些短信、邮件之类的操作,也可能会定时地检查和监控一些标志、参数等。

创建定时任务

在Spring Boot中编写定时任务是非常简单的事,下面通过实例介绍如何在Spring Boot中创建定时任务,实现每过5秒输出一下当前时间。

在Spring Boot的主类中加入@EnableScheduling注解,启用定时任务的配置

1import org.springframework.boot.SpringApplication 2import org.springframework.boot.autoconfigure.SpringBootApplication 3import org.springframework.scheduling.annotation.EnableScheduling 4 5 6/** 7 * Created by http://quanke.name on 2018/1/12. 8 */ 9 10 11@SpringBootApplication 12@EnableScheduling 13class Application 14 15fun main(args: Array<String>) { 16 SpringApplication.run(Application::class.java, *args) 17} 18

创建定时任务实现类

1import org.apache.commons.logging.LogFactory 2import org.springframework.scheduling.annotation.Scheduled 3import org.springframework.stereotype.Component 4import java.text.SimpleDateFormat 5import java.util.* 6 7 8/** 9 * Created by http://quanke.name on 2018/1/12. 10 */ 11@Component 12class ScheduledTasks { 13 14 val log = LogFactory.getLog(ScheduledTasks::class.java)!! 15 16 private val dateFormat = SimpleDateFormat("HH:mm:ss") 17 18 @Scheduled(fixedRate = 1000) 19 fun reportCurrentTime() { 20 log.info("现在时间 , ${dateFormat.format(Date())}") 21 } 22} 23

运行程序,控制台中可以看到类似如下输出,定时任务开始正常运作了。

12018-01-21 23:09:01.112 INFO 23832 --- [ main] n.q.kotlin.chaper11_8_1.ApplicationKt : Started ApplicationKt in 8.024 seconds (JVM running for 8.724) 22018-01-21 23:09:02.112 INFO 23832 --- [pool-2-thread-1] n.q.k.chaper11_8_1.task.ScheduledTasks : 现在时间 , 23:09:02 32018-01-21 23:09:03.042 INFO 23832 --- [pool-2-thread-1] n.q.k.chaper11_8_1.task.ScheduledTasks : 现在时间 , 23:09:03 42018-01-21 23:09:04.042 INFO 23832 --- [pool-2-thread-1] n.q.k.chaper11_8_1.task.ScheduledTasks : 现在时间 , 23:09:04 52018-01-21 23:09:05.042 INFO 23832 --- [pool-2-thread-1] n.q.k.chaper11_8_1.task.ScheduledTasks : 现在时间 , 23:09:05

@Scheduled详解

在上面的入门例子中,使用了@Scheduled(fixedRate = 1000) 注解来定义每过1秒执行的任务,对于@Scheduled的使用可以总结如下几种方式:

  • @Scheduled(fixedRate = 1000) :上一次开始执行时间点之后1秒再执行
  • @Scheduled(fixedDelay = 1000) :上一次执行完毕时间点之后1秒再执行
  • @Scheduled(initialDelay=1000, fixedRate=5000) :第一次延迟1秒后执行,之后按fixedRate的规则每5秒执行一次
  • @Scheduled(cron="*/1 * * * * *") :通过cron表达式定义规则

@Scheduled 注解是单线程的,如果需要多线程,请增加@Async

更多Spring Boot 和 kotlin相关内容

欢迎关注《Spring Boot 与 kotlin 实战》

欢迎关注公众号**《全栈架构》**

全栈架构

全栈有风险,菜鸟需谨慎

点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

SpringBoot学习笔记:计划任务

SpringBoot学习笔记:计划任务计划任务在企业的实践生产中,可能需要使用一些定时任务,如月末、季末和年末需要统计各种各样的报表,每周自动备份数据等。在Spring中使用定时任务1、加入@EnableScheduling注解,以启用定时任务机制@EnableS

HIVE 时间操作函数

日期函数UNIX时间戳转日期函数: from\_unixtime语法:   from\_unixtime(bigint unixtime\, string format\)返回值: string说明: 转化UNIX时间戳(从19700101 00:00:00 UTC到指定时间的秒数)到当前时区的时间格式举例:hive   selec

Spring Boot整合Scheduled定时任务器、整合Quartz定时任务框架

首先说明一下,这里使用的是Springboot2.2.6.RELEASE版本,由于Springboot迭代很快,所以要注意版本问题。1、Scheduled定时任务器:是Spring3.0以后自带的一个定时任务器。1<?xmlversion"1.0"encoding"UTF8"?2<projectxmlns"h

Spring Boot 与 Kotlin 定时任务(Scheduling Tasks) - HelloWorld