Error starting ApplicationContext. To display the conditions report re-run your application with...

关于启动项目报Error starting ApplicationContext. To display the conditions report re-run your application with ‘debug’ enabled.问题

今早启动项目时报上述错误,再网上查了很多资料都说是项目配置问题,但配置文件确实没有修改过。弄了一小时,发现其实是sql里多一个“,",实在是无语子。后来发现,其实在项目错误日志中,已经写明了报错原因,只是自己没有仔细查看。通过这次错误也是告诫自己要仔细看日志,快速找到问题。


罪魁祸首的","

Error starting ApplicationContext. To display the conditions report re-run your application with..._第1张图片


下面是错误日志

在这里插入图片描述


最开始一直在找图片标记的相关类是否被错误修改,找半天也没发现问题,后来往后面拉一下,发现了问题
Error starting ApplicationContext. To display the conditions report re-run your application with..._第2张图片

指向的文件就是加逗号的地方

所以一定要仔细看日志

你可能感兴趣的:(笔记,java)