Reputation: 12423
Do you know what is the cron expression for Spring @Scheduled annotation to run at mid night?
This is the cron I currently use. I am not sure if its right.
59 59 23 * * *
Please note that this is not quartz, its Spring so there are only 6 places, not 7.
Upvotes: 2
Views: 4841
Reputation: 11
0 0 0 * * * will trigger cron job in spring at mid night at 00:00
Upvotes: 1