1.问题:Cron expression must consist of 6 fields (found 7 in “0/5 * * * * ? *“)
@Scheduled(cron = "0/5 * * * * ? *")
2.原因:年的项1099~2099年,为默认。因此只需要6 个。 3.解决:去掉末尾 关于年的 * 改前:
0/5 * * * * ? *
改后:
0/5 * * * * ?