SpringBootExceptionReporter
用户自定义异常处理回调接口。
public interface SpringBootExceptionReporter { boolean reportException(Throwable failure); }
SpringBootExceptionReporter通过SpringFactoriesLoader加载,必须第一个包含ConfigurableApplicationContext的构造函数。
spring boot 源码之SpringBootExceptionReporter
原文:http://www.cnblogs.com/zhangwanhua/p/7942806.html