I would like know what is the difference between the Quartz Scheduler and JMS, and in what situations is better to do the use of the tools…
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Quartz scheduler is basically about running tasks in / to a schedule. For example, “do XYZ at 10 am every Friday”.
JMS is about reliable sending, queueing and delivery of messages between different Java programs (clients) potentially running on different machines.
As you can see they perform mostly unrelated functions. Use which ever provides the functionality that you actually need … or both if you need both scheduling and queuing.