views:

399

answers:

1

Please give me the sample on quartz scheduler using thread pooling in java

+1  A: 

OReilly has an article detailing the Quartz configuration for thread-pooling. Put the following in your quartz.properties.

org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount =  5
org.quartz.threadPool.threadPriority = 5
Brian Agnew