欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-04-14 15:04:23
在编写spring boot应用中会遇到这样的场景,比如:需要定时地发送一些短信、邮件之类的操作,也可能会定时地检查和监控一些标志、参数等。 创建定时任务 在sprin...

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

创建定时任务

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

在spring boot的主类中加入@enablescheduling注解,启用定时任务的配置

import org.springframework.boot.springapplication
import org.springframework.boot.autoconfigure.springbootapplication
import org.springframework.scheduling.annotation.enablescheduling
/**
* created by http://quanke.name on 2018/1/12.
*/
@springbootapplication
@enablescheduling
class application
fun main(args: array<string>) {
springapplication.run(application::class.java, *args)
}

创建定时任务实现类

import org.apache.commons.logging.logfactory
import org.springframework.scheduling.annotation.scheduled
import org.springframework.stereotype.component
import java.text.simpledateformat
import java.util.*
/**
* created by http://quanke.name on 2018/1/12.
*/
@component
class scheduledtasks {
val log = logfactory.getlog(scheduledtasks::class.java)!!
private val dateformat = simpledateformat(“hh:mm:ss”)
@scheduled(fixedrate = 1000)
fun reportcurrenttime() {
log.info(“现在时间 , ${dateformat.format(date())}”)
}
}

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

2018-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)
2018-01-21 23:09:02.112 info 23832 — [pool-2-thread-1] n.q.k.chaper11_8_1.task.scheduledtasks : 现在时间 , 23:09:02
2018-01-21 23:09:03.042 info 23832 — [pool-2-thread-1] n.q.k.chaper11_8_1.task.scheduledtasks : 现在时间 , 23:09:03
2018-01-21 23:09:04.042 info 23832 — [pool-2-thread-1] n.q.k.chaper11_8_1.task.scheduledtasks : 现在时间 , 23:09:04
2018-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的使用可以总结如下几种方式:

  1. @scheduled(fixedrate = 1000) :上一次开始执行时间点之后1秒再执行
  2. @scheduled(fixeddelay = 1000) :上一次执行完毕时间点之后1秒再执行
  3. @scheduled(initialdelay=1000, fixedrate=5000) :第一次延迟1秒后执行,之后按fixedrate的规则每5秒执行一次
  4. @scheduled(cron=”/1 “) :通过cron表达式定义规则

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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。