博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring boot2.0实现对quartz的集成
阅读量:5957 次
发布时间:2019-06-19

本文共 1043 字,大约阅读时间需要 3 分钟。

最近项目中需要集成quartz这个定时任务,记录集成方法如下:

  • pom.xml的相关引入
org.springframework.boot
spring-boot-starter-quartz
  • application.yml的修改
spring:  quartz:      #相关属性配置      properties:        org:          quartz:            scheduler:              instanceName: clusteredScheduler              instanceId: AUTO            jobStore:              class: org.quartz.impl.jdbcjobstore.JobStoreTX              driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate              tablePrefix: QRTZ_              isClustered: true              clusterCheckinInterval: 10000              maxMisfiresToHandleAtATime: 1              useProperties: false            threadPool:              class: org.quartz.simpl.SimpleThreadPool              threadCount: 20              threadPriority: 5              threadsInheritContextClassLoaderOfInitializingThread: true      #数据库方式      job-store-type: jdbc      #初始化表结构      jdbc:          initialize-schema: always

至此,quartz已经集成进来,一句代码都不需要编写!爽歪歪了!

转载地址:http://osrxx.baihongyu.com/

你可能感兴趣的文章
深入动态人脸识别小场景应用,2019年或将迎来爆发期
查看>>
Ionic2 下处理 Android 设备下返回按钮的事件
查看>>
linux安全问答(1)
查看>>
zabbix监控进程的CPU和内存占用量
查看>>
Error creating bean with name 'userServiceImpl': Injection of autowired dependencies failed
查看>>
mybatis update返回值的意义
查看>>
SVNQuery–如何创建更新索引并查询
查看>>
java高质量图片压缩
查看>>
源码解读Linux的limits.conf文件
查看>>
expdp 详解及实例
查看>>
C++中 栈的简单封装
查看>>
我的友情链接
查看>>
Linux常用命令--iconv
查看>>
varnish的了解与常用配置使用
查看>>
Product user profile information 没有导入
查看>>
DELL T410服务器U盘安装Centos7
查看>>
解读最具O2O属性—哈根达斯微信企业号的成功之道
查看>>
Sqlserver2008日志压缩
查看>>
linux更改语言
查看>>
centos7 修改mac地址
查看>>