SpringBoot 2.0整合Quartz,特别简单

SpringBoot2.0整合Quartz省去了很多繁琐的配置,针对新版本的Quartz进行了自动化配置(AutoConfiguration)。

简单的来说,整个过程只需要两步:添加依赖、填写配置

添加依赖

在pom.xml配置文件中添加依赖,只需要依赖 spring-boot-starter-quartz

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>

填写配置

在application.yml或application.properties配置文件中添加相应的quartz配置

spring:
	#选择数据库方式
	jbo-store-type: jdbc
	#quartz相关配置,与quartz.properties功能相同
	quartz:
		properties:
			org:
				quartz:
					scheduler:
						instanceName: testScheduler
						instanceId: AUTO
					jobStore:
						class: org.quartz.impl.jdbcjobstore.JobStoreTX
						driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
						tablePrefix: QRTZ_
						isClustered: true
						clusterCheckinInterval: 10000
						useProperties: false
					threadPool:
						class: org.quartz.simpl.SimpleThreadPool
						threadCount: 10
						threadPriority: 5
						threadsInheritContextClassLoaderOfInitializingThread: true

到这里Quartz就集成好了,不需要 QuartzConfiguration 配置类,也不需要创建继承自 AdaptableJobFactoryMyJobFactory 。如果还要做什么,那就是创建一个 QuartzManager 类,提供对Job的定时管理。

然后就是在数据库里创建quartz相关的表,可以写个Job就可以跑起来了。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值