SpringBoot项目中如何排查并解决遇到的BUG问题?
- 内容介绍
- 文章标签
- 相关推荐
本文共计2086个文字,预计阅读时间需要9分钟。
1. 启动项目时报错:Error starting ApplicationContext. To display the auto-configuration report, re-run your application with 'debug' enabled. 解决方法: 1. 在yml配置文件中添加debug: true,因为默认值为false。 2. 重新启动应用。
本文共计2086个文字,预计阅读时间需要9分钟。
1. 启动项目时报错:Error starting ApplicationContext. To display the auto-configuration report, re-run your application with 'debug' enabled. 解决方法: 1. 在yml配置文件中添加debug: true,因为默认值为false。 2. 重新启动应用。

