Spring java cron job.
I have following spring cron job expression but i don't understand what does that mean
please take a look */15 * 0,2-23 * * *
i understand only first part which is every after 15 seconds ? what else ?
This link has some good descriptions of the fields and what they mean.
So what we are seeing here, is an expression that will schedule some event for every fifteen seconds between the hours of 2 am and 1 am the following day (23 straight hours). From 1 am until 2 am, this event will not occur. And this will happen everyday indefinitely.