springboot源码解析(四)new FailureAnalyzers(context);

本文主要探讨SpringApplication的run方法中FailureAnalyzers的加载过程,包括loadFailureAnalyzers方法,它如何从classLoader加载'org.springframework.boot.diagnostics.FailureAnalyzer'实现,以及prepareFailureAnalyzers方法对这些分析器的准备,为故障诊断提供支持。
摘要由CSDN通过智能技术生成

在SpringApplication的run方法中,初始化了FailureAnalyzers,其内容如下:

	FailureAnalyzers(ConfigurableApplicationContext context, ClassLoader classLoader) {
		Assert.notNull(context, "Context must not be null");
		this.classLoader = (classLoader == null ? context.getClassLoader() : classLoader);
		this.analyzers = loadFailureAnalyzers(this.classLoader);
		prepareFailureAnalyzers(this.analyzers, context);
	}

前面两个方法我们就不做介绍了,我们从loadFailureAnalyzers方法开始介绍。

一、loadFailureAnalyzers(this.classLoader);

这个方法跟SpringApplication初始化其他的类型的逻辑一样,初始化了,在spring.factory文件中的,名称为:“org.springframework.boot.diagnostics.FailureAnalyzer”的对象,

二、prepareFailu

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值