javing
javing

Reputation: 12423

Run Spring cron job at midnight

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

Answers (3)

Thanigai
Thanigai

Reputation: 11

This will Run the Job exactly at Midnight

0 0 0 * * ?

Upvotes: 1

Neeraj Kumar
Neeraj Kumar

Reputation: 11

0 0 0 * * * will trigger cron job in spring at mid night at 00:00

Upvotes: 1

pvpkiran
pvpkiran

Reputation: 27018

Use cronmaker for generating and verifying cron's

0 0 0 1/1 * ?

Upvotes: 4

Related Questions