Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I setup a quartz.config file in a simple Java application?

I want to create this and reference it in my project so I can configure threads etc.

Thanks

share|improve this question
1  
If your topic is longer than your message text, then you should consider rewriting both ;-) – Joachim Sauer Jan 26 '11 at 14:15

1 Answer

up vote 2 down vote accepted

Take a look at the Quartz Quick Start Guide to see what a basic quartz.properties file looks like. This file must be placed on your classpath, for Quartz to use it. 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 available properties is available in the Quartz Configuration Reference.

share|improve this answer
1  
Thanks so I just add this to the build path and im ready to go?! How can I make sure im calling the right shedule using scedhule factory? Currently using: scheduler = StdSchedulerFactory.getDefaultScheduler(); – Mick Jan 26 '11 at 14:32
1  
Yes, that's correct. StdSchedulerFactory is the right factory to use because it creates the scheduler based on the contents of a properties file. – dogbane Jan 26 '11 at 14:42
Many thanks for your help! – Mick Jan 26 '11 at 14:45
dogbane - I was wondering if you knew if it was possible to have only one thread availble for each job/schedule. But have several threads for all the schedules?? I want to be able to run more than one job at a time but dont want to have two threads created on the same job?? i.e if a job hasnt finished before another starts? Thanks again. I will post this as a quation if yuo dont know. – Mick Jan 26 '11 at 15:18
hmm, this is tricky. Would be best to post it as another question. – dogbane Jan 26 '11 at 15:54
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.