启动服务后控制台无任何报错信息,程序直接退出:Process finished with exit code 1
更改日志级别为Info后依然没有任何输出,后直接为启动类添加try catch(注意要catch Throwable)发现启动后报错少依赖包:
public static void main(String[] args) {
try {
SpringApplication.run(HsaHuaweiApplication.class, args);
}catch(Throwable e) {
e.printStackTrace();
}
}
逐个解决依赖问题后可正常启动。
参考资料: SpringBoot启动后直接退出