quartz.config 889 B

123456789101112131415161718192021
  1. # You can configure your scheduler in either <quartz> configuration section
  2. # or in quartz properties file
  3. # Configuration section has precedence
  4. quartz.scheduler.instanceName = QuartzTest
  5. # configure thread pool info
  6. quartz.threadPool.type = Quartz.Simpl.SimpleThreadPool, Quartz
  7. quartz.threadPool.threadCount = 10
  8. quartz.threadPool.threadPriority = Normal
  9. # job initialization plugin handles our xml reading, without it defaults are used
  10. quartz.plugin.xml.type = Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz
  11. quartz.plugin.xml.fileNames = ~/quartz_jobs.xml
  12. # export this server to remoting context
  13. #quartz.scheduler.exporter.type = Quartz.Simpl.RemotingSchedulerExporter, Quartz
  14. #quartz.scheduler.exporter.port = 555
  15. #quartz.scheduler.exporter.bindName = QuartzScheduler
  16. #quartz.scheduler.exporter.channelType = tcp
  17. #quartz.scheduler.exporter.channelName = httpQuartz