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

For a system monitoring Java application which currently runs on the command line and uses ScheduledExecutorService, I would like to write a simple web application version (which be can run in a Servlet Container like Apache Tomcat or Jetty).

I have read about Quartz as one of the popular job schedulers for web applications. Would it be better (maybe because of better servlet container integration) to port this application from ScheduledExecutorService to Quartz?

Adding another library dependency to the application is not a problem, I am interested in technical reasons against usage of ScheduledExecutorService.

share|improve this question

2 Answers

up vote 2 down vote accepted

It depends on what you are using it for.

Quartz is useful for programmed times e.g. every hour on the hour.

ScheduledExecutorService is useful for repeating tasks which don't have to occur at a specific time. Its simpler and possibly more efficient. If you have this working it indicates to me that you don't need Quartz.

share|improve this answer
+1 for 'keep it simple', I will also try Quartz to collect some experience – mjn Jan 18 '11 at 16:39
Quartz really has good uses for scheduing regular jobs. – Peter Lawrey Jan 18 '11 at 16:45
1  
I think java has the APIs to perform what Quartz does. I still did not understand the need for Quartz framework. – Newbie Jan 23 at 10:18
1  
Quartz allows you to say you want a task run on the hour. e.g. 12:00, 13:00 etc. The built in APIs allow you to run every hour (starting at some point) but this drifts over time. (As much as 10 seconds a day) – Peter Lawrey Jan 23 at 10:29

ScheduledExecutorService operates at a lower level and you'd have to implement all scheduling monitoring/maintenance facilities yourself.

Quartz has tons of facilities such as Job Persistence, Transactions, Clustering etc.

share|improve this answer
These features are quite impressive! +1 – mjn Jan 18 '11 at 16:31

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.