I have a springboot (v2.0.3) batch application running on PCF 2. I have binded the scheduler service using manifest file and pushed it to pcf. It is up and running. Now when I try to create a job inn pcf invalid cron expression. I used this for running that batch for every 5 minutes (*/5 * * * *). It says invalid cron expression and the job is failed. Please help me with this issue
>every 5 minutes (*/5 * * * *)
There's two issues with your cron syntax:
Ex for every five mins: `0/5 * ? * *`
Thanks Daniel