Spring Boot 2启动报错 To display the conditions report re-run your application with 'debug' enabled.

 

一、报错内容

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2019-02-21 22:50:56.088 ERROR 13164 --- [  restartedMain] o.s.boot.SpringApplication               : Application run failed


 二、报错原因

多导入spring-boot-devtools包。


            org.springframework.boot
            spring-boot-devtools


三、解决方法

将多导入的spring-boot-devtools配置删除或者注释掉。

你可能感兴趣的:(SpringBoot2)