程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> simplethreadpool-org.quartz.simpl.SimpleThreadPool如何使用

simplethreadpool-org.quartz.simpl.SimpleThreadPool如何使用

編輯:編程綜合問答
org.quartz.simpl.SimpleThreadPool如何使用

Java中quartz框架下的org.quartz.simpl.SimpleThreadPool類如何使用?或者說quartz的線程池如何使用?

最佳回答:


已經解決了,算是一下臨時方案,哪位大神有更好的方法可以交流一下,代碼如下:

    Properties props = new Properties();
    props.put(StdSchedulerFactory.PROP_THREAD_POOL_CLASS,
            "org.quartz.simpl.SimpleThreadPool");
    props.put("org.quartz.threadPool.threadCount", "50");       //任務線程個數

    StdSchedulerFactory factory = new StdSchedulerFactory();
    factory.initialize(props);
    Scheduler scheduler = factory.getScheduler();
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved