Bootstrap

SpringBoot启动直接停止,不显示报错日志

Error starting ApplicationContext. To display the auto-configuration report re-run your application with ‘debug’ enabled.
Disconnected from the target VM, address: ‘127.0.0.1:57137’, transport: ‘socket’
Process finished with exit code 1

在这里插入图片描述

原因:SpringBoot启动遇见这种问题的先不要慌,出现的原因很可能有很多种,我也在网上搜了很多,不过都没有解决问题,后来才找到是因为注解 @ComponentScan 扫描了一个不存在的包
解决方案:去try-catch启动类;这时候就可以在控制台看到具体的保报错原因,解决起来也就方便了在这里插入图片描述

;