Quartz Cron Expression: Run Job Every 10 minutes starting NOW (immediately)

cron

I am using Quartz Scheduler using Spring. I want to configure the same with following schedule:

Run Job Every 10 minutes starting NOW

I am using following expression for the same.

0 */10 * * * ?

I thought * in the minutes field would make it run the first minute, but it does not do that way. It runs the first 10th minutes from now and then every 10 minutes afterwards.
Can anybody please suggest me the reason for this behavior and the solution to my problem also?

Best Answer

0 0/10 * 1/1 * ? *

Please see : http://www.cronmaker.com/

Related Topic