views:

714

answers:

4

Has anyone found any alternative open-source solutions to Quartz which they are happy with?

I know Cronacle is a well respected (and pricey) closed source solution for job scheduling but I'd like to make sure we exhaust the open-source alternatives before going down that route.

+8  A: 

Did you already check all of those listed here?

Open Source Job Schedulers in Java

jitter
Very suitable response. +1
Adeel Ansari
+2  A: 

I did some looking a while back and was hard-pressed to find any open source Java-based job scheduler that seemed to have even a fraction of the reputation and usage of Quartz. I would be really curious to hear why Quartz isn't sufficient.

Alex Miller
A: 

What about Flux Scheduler (http://fluxcorp.com/)?

James House
A: 

How about Sun's own java.util.TimerTask?

I've seen too often that ones aren't aware about this and plain decided to go ahead with Quartz.

BalusC
`TimerTask` is obsolete. `ScheduledExecutorService` has replaced it. Still not a substitute for Quartz, though.
skaffman
Ah yes, the `java.util.concurrent`.. That's one of the packages I still need to investigate more closely. Thanks for the heads up.
BalusC