quartz.config 999 B

12345678910111213141516171819202122
  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.triggHistory.type = Quartz.Plugin.History.LoggingJobHistoryPlugin
  11. quartz.plugin.jobInitializer.type = Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz.Plugins
  12. quartz.plugin.jobInitializer.fileNames = quartz_jobs.xml
  13. # export this server to remoting context
  14. #quartz.scheduler.exporter.type = Quartz.Simpl.RemotingSchedulerExporter, Quartz
  15. #quartz.scheduler.exporter.port = 555
  16. #quartz.scheduler.exporter.bindName = QuartzScheduler
  17. #quartz.scheduler.exporter.channelType = tcp
  18. #quartz.scheduler.exporter.channelName = httpQuartz