2011-08-20 147 views
0

如何創建quartz.properties文件,以便已聲明具有給定屬性的調度程序編號並使用StdSchedulerFactory getScheduler("schedulername")方法訪問它們?帶配置調度程序的石英

org.quartz.scheduler.instanceName = MyScheduler1 
org.quartz.threadPool.threadCount = 3 
org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore 

org.quartz.scheduler.instanceName = MyScheduler2 
org.quartz.threadPool.threadCount = 1 
org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore 
+0

每個調度器工廠都需要一個conf文件並且總是返回相同的調度器,所以我必須用新的配置創建新的工廠並獲取調度器。 – ayengin

回答

1

不,每個調度程序都需要它自己的配置屬性。

+0

每個調度程序工廠都需要它的配置文件,一個調度程序工廠總是返回相同的調度程序。我正確的。 – ayengin

+0

是的。並且兩個(或更多)調度程序工廠被賦予了相同的屬性(或者至少定義了具有相同名稱的調度程序的屬性)將始終返回相同的調度程序。 – jhouse