I need to run a job in spring boot for every 9 hours. I have used @Scheduled(cron = "0 */9 * * *") for running the job .But when the run the application I am getting error as "Encountered invalid @Scheduled method 'data': Cron expression must consist of 6 fields"
Please anyone help me out on this