spring boot 源码之SpringBootExceptionReporter

SpringBootExceptionReporter

  用户自定义异常处理回调接口。

public interface SpringBootExceptionReporter {
    boolean reportException(Throwable failure);
}

 SpringBootExceptionReporter通过SpringFactoriesLoader加载,必须第一个包含ConfigurableApplicationContext的构造函数。 

原文地址:https://www.cnblogs.com/zhangwanhua/p/7942806.html