13 lines
589 B
Plaintext
13 lines
589 B
Plaintext
# You can configure your scheduler in either <quartz> configuration section
|
|
# or in quartz properties file
|
|
# Configuration section has precedence
|
|
quartz.scheduler.instanceName = ServerScheduler
|
|
|
|
# configure thread pool info
|
|
quartz.threadPool.type = Quartz.Simpl.SimpleThreadPool, Quartz
|
|
quartz.threadPool.threadCount = 10
|
|
quartz.threadPool.threadPriority = Normal
|
|
|
|
# job initialization plugin handles our xml reading, without it defaults are used
|
|
quartz.plugin.xml.type = Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz.Plugins
|
|
quartz.plugin.xml.fileNames = ~/quartz_jobs.xml |