Spring Boot源码分析 - Configuration注解

栏目: Java · 发布时间: 6年前

内容简介:使用实现了

@Configuration 注解指示一个类声明一个或多个@Bean方法, 并且可以由Spring容器处理, 以在运行时为这些bean生成bean定义和服务请求.

使用 ConfigurationClassParser 来对 @Configuration 标注的类进行解析, 封装成 ConfigurationClass 实例. 具体的实现通过 ConfigurationClassPostProcessor 来实现的.

ConfigurationClassPostProcessor

实现了 BeanDefinitionRegistryPostProcessor 接口, 间接实现了 BeanFactorPostProcessor 接口.

  • #postProcessBeanDefinitionRegistry() : 注册所有 ConfigurationClass 中的 BeanDefinition , 包括 @Bean 注解的方法, @ImporResource 引入的资源中定义的bean, 和 @Import 注解引入的 ImportBeanDefinitionRegistrar 中注册的 BeanDefinition
  • #postProcessBeanFactory() : 在运行时以通过 cglig 增强的类来替换 ConfigurationClass , 为服务bean请求做准备. 增强的实现是通过 ConfigurationClassEnhancer 完成的.

插入一点, ConfigurationClassEnhancer 实现了直接使用bean注册方法来获取bean的操作, 提供了一个 BeanMethodInterceptor 的内部类来实行.

@Configuration
public class Config {
    @Bean
    public A a() {
        ...
        return a;
    }
    @Bean
    public B b() {
        b.setA(a());
        ...
        return b;
    }
}

Full ConfigurationClass VS Lite ConfigurationClass

先说区别: full的 ConfigurationClass 会使用CGLIB进行增强.

查看类 ConfigurationClassUtils , 其中有两个方法 #isFullConfigurationClass()#isLiteConfigurationClass() .

方法的实现是去检查 BeanDefinition 中的 ConfigurationClassPostProcessor.configurationClass 属性, 是 full 还是 lite .

这个属性的值又来源于 #checkConfigurationClassCandidate() 方法, 如果 BeanDefinition 使用的是 @Configuration 注解, 则为 full ; 如果是 @Component , @ComponentScan , @Import 或者 @ImportResource 中的任何一种, 则为 lite . 如果是 ConfigurationClass , 则会继续为其添加顺序属性.

public static boolean checkConfigurationClassCandidate(BeanDefinition beanDef, MetadataReaderFactory metadataReaderFactory) {
	...
	if (isFullConfigurationCandidate(metadata)) {
		beanDef.setAttribute(CONFIGURATION_CLASS_ATTRIBUTE, CONFIGURATION_CLASS_FULL);
	}
	else if (isLiteConfigurationCandidate(metadata)) {
		beanDef.setAttribute(CONFIGURATION_CLASS_ATTRIBUTE, CONFIGURATION_CLASS_LITE);
	}
	else {
		return false;
	}
	// It's a full or lite configuration candidate... Let's determine the order value, if any.
	Map<String, Object> orderAttributes = metadata.getAnnotationAttributes(Order.class.getName());
	if (orderAttributes != null) {
		beanDef.setAttribute(ORDER_ATTRIBUTE, orderAttributes.get(AnnotationUtils.VALUE));
	}
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

构建高可用Linux服务器

构建高可用Linux服务器

余洪春 / 机械工业出版社华章公司 / 2011-11-1 / 79.00元

资深Linux/Unix系统管理专家兼架构师多年一线工作经验结晶,51CTO和ChinaUnix等知名社区联袂推荐。结合实际生产环境,从Linux虚拟化、集群、服务器故障诊断与排除、系统安全性等多角度阐述构建高可用Linux服务器的最佳实践。本书实践性非常强,包含大量企业级的应用案例及相应的解决方案,读者可以直接用这些方案解决在实际工作中遇到的问题。 全书一共10章。第1章以作者的项目实践为......一起来看看 《构建高可用Linux服务器》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试