Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. # jobStoreTx
  2. org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
  3. org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
  4. org.quartz.jobStore.dataSource: quartzDataSource
  5. org.quartz.jobStore.tablePrefix: QRTZ_
  6. org.quartz.jobStore.useProperties: true
  7. org.quartz.jobStore.misfireThreshold: 10000
  8. org.quartz.jobStore.isClustered: false
  9.  
  10. # dataSource
  11. org.quartz.dataSource.quartzDataSource.driver: com.mysql.jdbc.Driver
  12. org.quartz.dataSource.quartzDataSource.URL: jdbc:mysql://localhost:3306/quartz
  13. org.quartz.dataSource.quartzDataSource.user: root
  14. org.quartz.dataSource.quartzDataSource.password: root
  15. org.quartz.dataSource.quartzDataSource.maxConnections: 10
  16. org.quartz.dataSource.quartzDataSource.validationQuery: SELECT * FROM `quartz`.`qrtz_triggers`;
  17. org.quartz.dataSource.quartzDataSource.idleConnectionValidationSeconds: 10
  18. org.quartz.dataSource.quartzDataSource.validateOnCheckout: false
  19. org.quartz.dataSource.quartzDataSource.discardIdleConnectionsSeconds: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement