Spring Boot  Process finished with exit code 0

日志也无任何征兆如何解决!蒙蔽?最简单方式上 try cath 加持,异常顺利输出。

try {
    ...
    SpringApplication.run(MybatisPlusServiceApplication.class, args));
} catch (Throwable t) {
    t.printStackTrace();
}
04-28 08:52