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的主要内容,如果未能解决你的问题,请参考以下文章
2RocketMQ 源码解析之 与 Spring Boot 集成
spring-boot-2.0.3不一样系列之源码篇 - run方法之createApplicationContext,绝对有值得你看的地方
spring-boot-2.0.3不一样系列之源码篇 - run方法之prepareContext,绝对有值得你看的地方
Spring Boot 2从入门到入坟 | 自动配置篇:源码分析之自动包规则原理