我的情况是我们有多个石英调度程序。实际上我正在使用第三方jar文件,它使用的是石英调度程序,我也在我的应用程序中使用了石英调度程序。 quartz.configuration文件看起来如下所示:
org.quartz.scheduler.instanceName = MyScheduler
org.quartz.scheduler.instanceId = AUTO
org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 10
org.quartz.threadPool.threadPriority = 5
org.quartz.jobStore.misfireThreshold = 60000
org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
我们的应用程序通过使用StdSchedulerFactory()。getScheduler(" MyScheduler")API调用来获取调度程序实例。第三方人使用StdSchedulerFactory()。getScheduler()API调用来创建他们的调度程序实例。我只是想知道这两个调度程序是否将共享相同的线程池,或者是否将为每个相应的调度程序创建不同的线程池。