springboot——任务调度框架quartz
程序员文章站
2024-03-18 17:06:10
...
Quartz是一个任务日程管理系统,一个在预先确定(被纳入日程)的时间到达时,负责执行(或者通知)其他软件组件的系统。
一、pom依赖
<!-- 父工程配置文件里统一配置了依赖的版本,新加入的quartz依赖找不到版本时,需要在父工程中加入版本号对应,负责会报错 -->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.0.1.RELEASE</version>
</dependency>
<!-- quartz依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
</dependencies>
二、controller层
@Component// 创建该类对象
public class quartzController {
@Scheduled(fixedRate=1000)//每隔一秒钟调用一次
public void run(){
System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
}
}
三、启动类
@SpringBootApplication(scanBasePackages= {"com.quartz.controller"})
@EnableScheduling //启动类开启任务调度
public class quartzTest {
public static void main(String[] args) {
SpringApplication.run(quartzTest.class, args);
}
}
四、结果
上一篇: 3d_unity_hw4
下一篇: FFmpeg库视频解码初探(软硬件解码)
推荐阅读
-
springboot——任务调度框架quartz
-
Quartz 任务调度框架
-
Spring整合Quartz框架定时任务 springmvcquartz
-
Spring整合Quartz框架定时任务 springmvcquartz
-
Spring集成Quartz定时任务框架介绍和Cron表达式详解 博客分类: spring
-
Spring集成Quartz定时任务框架介绍和Cron表达式详解 博客分类: spring
-
Spring整合Quartz实现定时任务调度的方法
-
Quartz开源的作业调度框架 博客分类: JAVA Quartz开源作业调度框架
-
Spring整合Quartz实现定时任务调度的方法
-
基于spring+quartz的分布式定时任务框架实现