how to stop spring batch scheduled jobs from running at first time when executing the code?
问题 i'm using spring batch 2.2.4 with quartz to run some jobs at certain time the problem is the jobs always run after executing the code at the first time then it runs based on the scheduled time. I want to stop the first run and let it only runs based on the scheduled time. my cron expression is "0 0 0 * * ?" & I also tried "0 0 0 1/1 * ? *" but it still executes once when the application starts how can I stop the first execution when the application starts? this is the job context file: <batch