12345678910111213141516171819202122 |
- # You can configure your scheduler in either <quartz> configuration section
- # or in quartz properties file
- # Configuration section has precedence
- quartz.scheduler.instanceName = QuartzTest
- # 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.triggHistory.type = Quartz.Plugin.History.LoggingJobHistoryPlugin
- quartz.plugin.jobInitializer.type = Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz.Plugins
- quartz.plugin.jobInitializer.fileNames = quartz_jobs.xml
- # export this server to remoting context
- #quartz.scheduler.exporter.type = Quartz.Simpl.RemotingSchedulerExporter, Quartz
- #quartz.scheduler.exporter.port = 555
- #quartz.scheduler.exporter.bindName = QuartzScheduler
- #quartz.scheduler.exporter.channelType = tcp
- #quartz.scheduler.exporter.channelName = httpQuartz
|