Can it use one quartz expression to describe a job executing at 13:30, 15:30, 18:00 everyday?
Geln
Can it use one quartz expression to describe a job executing at 13:30, 15:30, 18:00 everyday?
Geln
I don't think you can do it with a single cron expression. You would need two, like 0 30 13,15 * *
and 0 0 18 * *
.