I am using the Quartz Scheduling and I've tried to create a trigger that starts every day at 9 AM until 5 PM, every 25 minutes. It should like that: 9:00, 9:25, 9:50, 10:15, 10:40, 11:05, etc
The final quarts expression looks like that: 0 0/25 9-17 * * ? *
But the execution looks like that: 9:00, 9:25, 9:50, 10:00, 10:25, 10:50, 11:00, etc
There is any way to reach this schedule: 9:00, 9:25, 9:50, 10:15, 10:40, 11:05, etc or I should change quartz?
Thank you!