如何对springboot启动类捕获异常

在启动类加上

  public static void main(String[] args) {
        try {
            SpringApplication.run(PigsBlogBackstageApplication.class, args);
            System.out.println("Successful Start");
        } catch (Exception e) {
            e.printStackTrace();

        }

    }

 

posted @ 2020-06-23 00:12  安详的苦丁茶  阅读(631)  评论(1编辑  收藏  举报