springboot 定时任务@Scheduled注解

需要定时器的地方好像还挺多. 之前项目中有用到使用定时器循环订单时间,然后将超时的订单状态更改.

springboot的@Scheduled注解能够很快速完成我们需要的定时任务.

@Component
public class ExampleTimer {
     SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

        /*每100秒执行一次*/
        @Scheduled(fixedRate = 100000)
        public void timerRate() {
            System.out.println("我是:timerRate");
        }

        /*第一次10秒后执行,当执行完后2秒再执行*/
        @Scheduled(initialDelay = 10000, fixedDelay = 2000)
        public void timerInit() {
            System.out.println("init : "+dateFormat.format(new Date()));
        }

        /*每天15:39:00时执行*/
        @Scheduled(cron = "0 39 15 * * ? ")
        public void timerCron() {
            System.out.println("current time : "+ dateFormat.format(new Date()));
        }
}

其中需要注意的是:fixedRate和fixedDelay这两个参数开始计时的时间不一样.如果需要调用的方法执行时间比较长, 这时差别就能体现出来.

fixedRate:上一次开始执行时间点后再次执行;

fixedDelay:上一次执行完毕时间点后再次执行;

还发现还有一种方法是调用配置文件的方法.

@Scheduled(fixedDelayString = "${jobs.fixedDelay}")
  public void getTask1() {
    System.out.println("任务1,从配置文件加载任务信息,当前时间:" + dateFormat.format(new Date()));
  }

有兴趣的可以具体看下http://blog.csdn.net/je_ge/article/details/53434227.

附上一个在线Cron表达式生成器

http://cron.qqe2.com/

时间: 2024-10-07 18:06:47

springboot 定时任务@Scheduled注解的相关文章

springboot 基于@Scheduled注解 实现定时任务

前言 使用SpringBoot创建定时任务非常简单,目前主要有以下三种创建方式: 一.基于注解(@Scheduled) 二.基于接口(SchedulingConfigurer) 前者相信大家都很熟悉,但是实际使用中我们往往想从数据库中读取指定时间来动态执行定时任务,这时候基于接口的定时任务就派上用场了. 三.基于注解设定多线程定时任务 一.静态:基于注解 1.创建定时器 使用SpringBoot基于注解来创建定时任务非常简单,只需几行代码便可完成. 代码如下: @Component @Confi

spring源码分析之定时任务Scheduled注解

1. @Scheduled 可以将一个方法标识为可定时执行的.但必须指明cron(),fixedDelay(),或者fixedRate()属性. 注解的方法必须是无输入参数并返回空类型void的. @Scheduled注解由注册的ScheduledAnnotationBeanPostProcessor来处理,该processor可以通过手动来注册,更方面的方式是通过<task:annotation-driven/>或者@EnableScheduling来注册.

Springboot的默认定时任务——Scheduled注解

本博客参考博文地址. 1.pom依赖: 引入springboot starter包即可 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.

spring定时任务详解(@Scheduled注解)

在springMVC里使用spring的定时任务非常的简单,如下: (一)在xml里加入task的命名空间 xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.1.xsd (二)启用注解驱动的定时任务 <task:annot

spring boot 学习(八)定时任务 @Scheduled

SpringBoot 定时任务 @Scheduled 前言 有时候,我们有这样的需求,需要在每天的某个固定时间或者每隔一段时间让应用去执行某一个任务.一般情况下,可以使用多线程来实现这个功能:在 Spring 框架下可以搭配 Quartz 来实现,附上笔记 Spring Quartz 实现多任务定时调用.在 SpringBoot 框架下,我们可以用 Spring scheduling 来实现定时任务功能. 首先,我们先创建一个 Spring Boot 项目.创建方法: * (自动完成初始化)ht

一文搞懂springboot定时任务

Introduction 在springboot中自带了一个轻量级的调度系统.如果我们希望在特定的时间或者以特定的时间间隔完成某些任务,那么它完全能够满足需求,不需要再额外引入像Quartz这种略显沉重的调度框架.下面我们就来介绍springboot中@scheduled 注解的用法. 环境:springboot 2.2.2 常用简单定时任务 首先,为了使用springboot中的定时任务,需要在springboot应用中加入 @EnableScheduling 注解.该注解开启对定时任务的支持

springboot之定时任务@Scheduled

1.pom.xml中导入必要的依赖: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.1.RELEASE</version> </parent> <dependencies> <!-- SpringBoot

使用轻量级Spring @Scheduled注解执行定时任务

WEB项目中需要加入一个定时执行任务,可以使用Quartz来实现,由于项目就一个定时任务,所以想简单点,不用去配置那些Quartz的配置文件,所以就采用了Spring @Scheduled注解来实现了定时任务.在这里做个备注. spring配置文件  xmlns中加入一段: xmlns:task="http://www.springframework.org/schema/task" 然后xsi:schemaLocation多加下面的内容: http://www.springframe

Spring 的@Scheduled注解实现定时任务运行和调度

首先要配置我们的spring.xml   ---  即spring的主配置文件(有的项目中叫做applicationContext.xml或context.xml) xmlns 多加以下的内容. [html] view plaincopy xmlns:task="http://www.springframework.org/schema/task" 然后xsi:schemaLocation多加以下的内容. [html] view plaincopy http://www.springf