I am using Quartz Scheduler to run my jobs. I want to run my job every thirty seconds. What will be my cron expression for that?
For every one minute, I am using below cron expression:
<cron-expression>0 0/1 * 1/1 * ? *</cron-expression>
What it will be for every thirty seconds?
0 0/15 * 1/1 * ? *
? – Bumptious