SpringBoot启动失败,也不报错

SpringBoot启动失败,也不报错_第1张图片

 

1)将启动类添加try-catch捕获信息

        在springboot的启动类中添加try-catch即可出现具体错误信息;

    try {
            SpringApplication.run(ConverterApplication.class, args);
        } catch (Exception e) {
            System.out.println("e.getMessage() = " + e.getMessage());
        }

2)根据错误信息定位问题,进行修复;

你可能感兴趣的:(报错与找BUG总结,spring,boot,后端)