Created
July 16, 2012 07:26
-
-
Save rtrcolin/3121351 to your computer and use it in GitHub Desktop.
Dropwizard Quartz Service YML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Other settings | |
# would go here | |
# Quartz Scheduler configuration | |
quartzSettings: | |
instanceName: MyQuartzScheduler | |
threadPoolClass: org.quartz.simpl.SimpleThreadPool | |
threadCount: 5 | |
threadPriority: 5 | |
jobStoreClass: org.quartz.simpl.RAMJobStore | |
# A comma separated list of XML files | |
jobFiles: daily_jobs.xml,critical_jobs.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment