spring boot 源码之SpringBootExceptionReporter

Posted zwh1988

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 源码之SpringBootExceptionReporter相关的知识,希望对你有一定的参考价值。

SpringBootExceptionReporter

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

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

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

 

以上是关于spring boot 源码之SpringBootExceptionReporter的主要内容,如果未能解决你的问题,请参考以下文章