quartz.properties 1.2 KB

1234567891011121314151617181920212223242526
  1. #==============================================================
  2. #Configure Main Scheduler Properties
  3. #==============================================================
  4. org.quartz.scheduler.instanceName = TestScheduler1
  5. org.quartz.scheduler.instanceId = AUTO
  6. #==============================================================
  7. #Configure ThreadPool
  8. #==============================================================
  9. org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
  10. org.quartz.threadPool.threadCount = 5
  11. org.quartz.threadPool.threadPriority = 5
  12. #==============================================================
  13. #Configure JobStore
  14. #==============================================================
  15. org.quartz.jobStore.misfireThreshold = 60000
  16. org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
  17. org.quartz.jobStore.tablePrefix = QRTZ_
  18. org.quartz.jobStore.dataSource = dataSource
  19. org.quartz.jobStore.isClustered = true
  20. org.quartz.jobStore.clusterCheckinInterval = 15000
  21. #==============================================================
  22. #Non-Managed Configure Datasource
  23. #==============================================================
  24. org.quartz.jobStore.selectWithLockSQL=SELECT * FROM {0}LOCKS UPDLOCK WHERE LOCK_NAME = ?