加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

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

发布时间:2020-12-14 19:48:09 所属栏目:Java 来源:网络整理
导读:在编写Spring Boot应用中会遇到这样的场景,比如:需要定时地发送一些短信、邮件之类的操作,也可能会定时地检查和监控一些标志、参数等。 创建定时任务 在Spring Boot中编写定时任务是非常简单的事,下面通过实例介绍如何在Spring Boot中创建定时任务,实现

在编写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

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

您可能感兴趣的文章:

  • 关于Spring Boot和Kotlin的联合开发
  • spring boot + jpa + kotlin入门实例详解
  • 使用Spring boot + jQuery上传文件(kotlin)功能实例详解
  • Kotlin + Spring Boot 请求参数验证的代码实例
  • Spring Boot 与 kotlin 使用Thymeleaf模板引擎渲染web视图的方法
  • Spring Boot 与 Kotlin 使用JdbcTemplate连接MySQL数据库的方法
  • 详解用Kotlin写一个基于Spring Boot的RESTful服务
  • Spring Boot与Kotlin 整合全文搜索引擎Elasticsearch的示例代码
  • Spring Boot 与 Kotlin 上传文件的示例代码
  • Spring Boot和Kotlin的无缝整合与完美交融

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读