I am using Spring schedule. I configured the following Cron expression to run my task every Tuesday night at 9pm,
"0 0 21 * * TUE"
However, I am getting the following exception when am starting the application
Encountered invalid @Scheduled method 'runSchduler': Cron expression must consist of 6 fields
Is my Spring Cron expression wrong?