quartz.dataSource.default.driver = com.mysql.jdbc.Driver
quartz.dataSource.default.URL = jdbc:mysql://localhost:3306/quartz
quartz.dataSource.default.user = root
quartz.dataSource.default.password = password
quartz.scheduler.instanceName = MyScheduler
quartz.scheduler.instanceId = AUTO
quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
quartz.jobStore.tablePrefix = QRTZ_
quartz.jobStore.isClustered = true
quartz.jobStore.clusterCheckinInterval = 20000
quartz.jobStore.dataSource = default
quartz.plugin.jobInitializer.class = org.quartz.plugins.xml.XMLSchedulingDataProcessorPlugin
quartz.plugin.jobInitializer.fileNames = quartz_jobs.xml
quartz.plugin.jobInitializer.failOnFileNotFound = true
quartz.plugin.jobInitializer.scanInterval = 60