Search code examples
javaquartz-scheduler

How to start a cron using Quartz at start of hour each hour ?


From the documentation below, I assume "0 0 * * * *" is the right answer. I wanted to double verify:

http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html


Solution

  • Following expression runs every one hour at the start of each hour.

    0 0 0/1 1/1 * ? *