spring boot2.0实现对quartz的集成

最近项目中需要集成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已经集成进来,一句代码都不需要编写!爽歪歪了!

你可能感兴趣的:(spring boot2.0实现对quartz的集成)