I am using the Quartz Scheduling API for Java. Could you help me to run every 25 seconds using cron-expression. It\'s just a delay. It does not have to start always at second 0.
You can't have a schedule like that for quartz.
One thing you could do is schedule a wrapper job to run every 5 seconds, and only do any work every fifth execution.