启动服务后控制台无任何报错信息,程序直接退出:Process finished with exit code 1

    更改日志级别为Info后依然没有任何输出,后直接为启动类添加try catch(注意要catch Throwable)发现启动后报错少依赖包:

    1. public static void main(String[] args) {
    2. try {
    3. SpringApplication.run(HsaHuaweiApplication.class, args);
    4. }catch(Throwable e) {
    5. e.printStackTrace();
    6. }
    7. }

    逐个解决依赖问题后可正常启动。


    参考资料: SpringBoot启动后直接退出