I would like to schedule a job using Quartz to run 30 minutes past the hour. For example I want the job to run at 00:30, 1:30, 2:30 and so on.
Can you guys help me to get the correct cron expression?
I would like to schedule a job using Quartz to run 30 minutes past the hour. For example I want the job to run at 00:30, 1:30, 2:30 and so on.
Can you guys help me to get the correct cron expression?
Simple enough
Every 30th minute of every hour, every day of the month, every month, every day of the week. From wikipedia
For quartz, the cron expression introduces more fields (7 total), the first being
seconds
and the last beingyears
(but optional). You can see those here.You need