I am new to Spring. I am trying to run a cron job every hour and I am using the
@Scheduled(cron="0 0/60 * * * ?")
expression for this. So when does the job start? Lets say if i have deployed the application at 10:03 AM. Will the cron Job start at the next hour i.e., 11:00 AM or it starts at 10:03 AM first and then from the next consecutive hours like 11:00, 12:00 and so on..?
Actually I deployed my application yesterday and I don't see the cron job running. I am trying to figure it out why it's not running. Meanwhile I just want to clarify myself.
I have tried to follow the documentation, but I believe they didn't mention this in the documentation: https://docs.spring.io/spring/docs/current/spring-framework-reference/html/scheduling.html