问题
1 | Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. |
原因
SpringBoot 和 SpringCloud 的版本不兼容造成。
这里因为 SpringBoot 使用了最新 2.1.0,而 SpringCloud 用的是 Finchley.SR2,而它支持的是 2.0.x 及以下版本(官方说明最高到 2.0.6 )。
解决
降 SpringBoot 版本到 2.0.x 或者使用 SpringCloud Greenwich.M1。