spring boot 启动卡住_spring-boot启动过程与starter分析

v2-c0142fd99d4513a818e482d6786139b9_1440w.jpg?source=172ae18b

具体可关注公众号: 戏说码农职场


元注解

元标签有 @Retention、@Documented、@Target、@Inherited、@Repeatable 5 种。

FactoryBean getObject

1. 静态注入

v2-12ec1e0ef22b9188f4faecc545fed186_b.jpg

2. 动态引入

基于ImportSelector接口实现

v2-7efbe8b4200643fb7eeb0f1ba030da9a_b.jpg

v2-03e08e764772491973a36e2eeb2d01db_b.jpg

v2-c0cf023398a3da20edb42d0d144048fd_b.jpg

3. 基于ImportBeanDefinition

v2-f0355ce71cb05bfa816db7abab8afd0a_b.jpg

4. spring.factories

v2-6c782610e621ea7b9531d09d0d69138a_b.jpg

v2-4dcf9ed6c2041526986c0d6888c8acd4_b.jpg

@conditional 加载到容器的条件

第一个决定要加载的类型, 第二个决定是否加载?

v2-98cca5f2ab69ea20b0f957d7d3b606d5_b.jpg

扩展下. 其实springCloud组件 很多用到@Import @Conditional , 还有些select等, 顺藤摸瓜 我简答列列举几个:

  1. SpringBoot 启动注解

@SpringBootApplication-->@EnableAutoConfiguration

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
		@Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {}

@Import(AutoConfigurationImportSelector.class)

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@AutoConfigurationPackage
@Import(AutoConfigurationImportSelector.class)
public @interface EnableAutoConfiguration {}

重点说下Selector:

public class AutoConfigurationImportSelector implements DeferredImportSelector, BeanClassLoaderAware,
		ResourceLoaderAware, BeanFactoryAware, EnvironmentAware, Ordered {}

v2-9448535ed8ff7807f8884e56e972908a_b.jpg

最顶层继承了ImportSelector 和 Aware接口:

  • ImportSelector---控制哪些类可以被加载到Spring容器进行管理
public interface ImportSelector {

	/**
	 * Select and return the names of which class(es) should be imported based on
	 * the {@link AnnotationMetadata} of the importing @{@link Configuration} class.
	 */
	String[] selectImports(AnnotationMetadata importingClassMetadata);

}
protected List<String> getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) {
		List<String> configurations = SpringFactoriesLoader.loadFactoryNames(getSpringFactoriesLoaderFactoryClass(),
				getBeanClassLoader());
		Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you "
				+ "are using a custom packaging, make sure that file is correct.");
		return configurations;
	}
protected Class<?> getSpringFactoriesLoaderFactoryClass() {
		return EnableAutoConfiguration.class;
}

其实最终是寻找EnableAutoConfiguration对应的类组合, EnableAutoConfiguration来自package org.springframework.boot.autoconfigure;

所以最终初始化时, 是加载了spring-boot-autoconfigure里面的spring.factories的内容, 简单列举出现:

v2-a832aa8035bbf75ef4ac79e8e6da368a_b.jpg

说明下:

SpringFactoriesLoader属于Spring框架私有的一种扩

展方案,其主要功能就是从指定的配置文件META-INF/spring.factories加载配置。

public final class SpringFactoriesLoader {

	/**
	 * The location to look for factories.
	 * <p>Can be present in multiple JAR files.
	 */
	public static final String FACTORIES_RESOURCE_LOCATION = "META-INF/spring.factories";


	private static final Log logger = LogFactory.getLog(SpringFactoriesLoader.class);

	private static final Map<ClassLoader, MultiValueMap<String, String>> cache = new ConcurrentReferenceHashMap<>();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值