Take a look at the Quartz Quick Start Guide to see what the main quartz.properties file looks like. This file must be placed in your classpath in order to use Quartz. Example:
org.quartz.scheduler.instanceName = MyScheduler org.quartz.scheduler.instanceId = 1 org.quartz.scheduler.rmi.export = false org.quartz.scheduler.rmi.proxy = false org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool org.quartz.threadPool.threadCount = 3 org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
Full documentation of the available properties is available in the Quartz Setup Reference .
dogbane
source share