Как настроить хост Quartz.NET с Spring.NET - PullRequest
0 голосов
/ 29 июля 2011

Мне нужно настроить экземпляр Quartz.NET с помощью Spring.NET.Я не смог найти пример того, как это сделать, кроме очень простых случаев.Мне не нужна конфигурация задания / триггера, так как они выполняются через API для нас.Мне нужно средство для настройки этих параметров.

quartz.scheduler.instanceName = ServerScheduler
quartz.threadPool.type = Quartz.Simpl.SimpleThreadPool, Quartz

quartz.threadPool.threadCount = 10

quartz.threadPool.threadPriority = Normal

quartz.plugin.xml.type = Quartz.Plugin.Xml.JobInitializationPlugin, Quartz

quartz.plugin.xml.fileNames = C:/Tools/Forge/DataImport/Config/quartz_jobs.xml

quartz.jobStore.type = Quartz.Impl.AdoJobStore.JobStoreTX, Quartz 

quartz.jobStore.driverDelegateType = Quartz.Impl.AdoJobStore.StdAdoDelegate, Quartz

quartz.jobStore.dataSource = ForgePlatformDatasource 

quartz.dataSource.ForgePlatformDatasource.connectionString = Server=172.20.0.113 Database=ForgeQuartz;Uid=sa;Pwd=654321

quartz.dataSource.ForgePlatformDatasource.provider = SqlServer-40 

quartz.jobStore.useProperties = true 

quartz.scheduler.exporter.type = Quartz.Simpl.RemotingSchedulerExporter, Quartz

quartz.scheduler.exporter.port = 555

quartz.scheduler.exporter.bindName = QuartzScheduler

quartz.scheduler.exporter.channelType = tcp

1 Ответ

1 голос
/ 31 июля 2011

В соответствии с тем, что я помню, вы можете установить все ваши данные конфигурации в свойстве SchedulerFactoryObject -> QuartzProperties.

<object name="SomeName" type="Spring.Scheduling.Quartz.SchedulerFactoryObject, Spring.Scheduling.Quartz">
   <property name="QuartzProperties">
      <dictionary>
        <entry key="quartz.scheduler.instanceName" value="ServerScheduler"/>
        <entry key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz"/>
        <entry key="quartz.threadPool.threadCount" value="10"/>
        ... and many more ...
    </dictionary>
  </property>
</object>

API-документация:

    /// <summary> 
    /// Set Quartz properties, like "quartz.threadPool.type".
    /// </summary>
    /// <remarks>
    /// Can be used to override values in a Quartz properties config file,
    /// or to specify all necessary properties locally.
    /// </remarks>
    /// <seealso cref="ConfigLocation" />
    public virtual IDictionary QuartzProperties
    {
        set { quartzProperties = value; }
    }
...