热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

dubboservice注解用法_dubbo系列之springboot核心配置读取(三)

欢迎关注公众号【sharedCode】致力于主流中间件的源码分析,可以直接与我联系版本说明springbootstarter:0.1.1dubbo版本:2.6.2自动
欢迎关注公众号【sharedCode】致力于主流中间件的源码分析, 可以直接与我联系

版本说明

springboot starter : 0.1.1

dubbo版本: 2.6.2

自动配置类

@Configuration
@ConditionalOnProperty(prefix = DUBBO_PREFIX, name = "enabled", matchIfMissing = true, havingValue = "true")
@ConditionalOnClass(AbstractConfig.class)
public class DubboAutoConfiguration {// 单个dubbo配置绑定bean , 默认就是单个@EnableDubboConfigprotected static class SingleDubboConfigConfiguration {}/*** 多个dubbo配置绑定bean , 默认不使用。**/@ConditionalOnProperty(name = MULTIPLE_CONFIG_PROPERTY_NAME, havingValue = "true")@EnableDubboConfig(multiple = true)protected static class MultipleDubboConfigConfiguration {}/*** service类,服务提供者的BeanDefinitionRegistryPostProcessor类,用来解析* @Service注解,生成Service的BeanDefinition类,放入spring容器,供spring容器生成Bean**/@ConditionalOnProperty(name = BASE_PACKAGES_PROPERTY_NAME)@ConditionalOnClass(RelaxedPropertyResolver.class)@Beanpublic ServiceAnnotationBeanPostProcessor serviceAnnotationBeanPostProcessor(Environment environment) {RelaxedPropertyResolver resolver = new RelaxedPropertyResolver(environment);Set packagesToScan = resolver.getProperty(BASE_PACKAGES_PROPERTY_NAME, Set.class, emptySet());return new ServiceAnnotationBeanPostProcessor(packagesToScan);}// springboot dataBinder 机制的扩展,用来将具体的属性设置到相应的实体类里面去。@ConditionalOnClass(RelaxedDataBinder.class)@Bean@Scope(scopeName = SCOPE_PROTOTYPE)public RelaxedDubboConfigBinder relaxedDubboConfigBinder() {return new RelaxedDubboConfigBinder();}/*** 用来解析@Reference 注解,消费者引用哪些服务,通过这个注解来进行引用* 给标注这个@Reference注解的属性赋值, 和@autowired的做法类似。* */@ConditionalOnMissingBean@Bean(name = ReferenceAnnotationBeanPostProcessor.BEAN_NAME)public ReferenceAnnotationBeanPostProcessor referenceAnnotationBeanPostProcessor() {return new ReferenceAnnotationBeanPostProcessor();}}

配置说明:

SingleDubboConfigConfiguration : 引入了单个dubbo配置绑定bean的配置 , 默认使用

// 配置如下
dubbo.application
dubbo.module
dubbo.registry
dubbo.protocol
dubbo.monitor
dubbo.provider
dubbo.consumer

MultipleDubboConfigConfiguration :多个dubbo配置绑定bean , 默认不使用。Dubbo @Service@Reference 允许 Dubbo 应用关联ApplicationConfig Bean 或者指定多个RegistryConfig Bean 等能力。换句话说,Dubbo 应用上下文中可能存在多个ApplicationConfig 等 Bean定义。

// 配置如下
dubbo.applications
dubbo.modules
dubbo.registries
dubbo.protocols
dubbo.monitors
dubbo.providers
dubbo.consumers

serviceAnnotationBeanPostProcessor :解析service类注解的类,如果在spring boot启动类上配置了@DubboComponentScan 则默认不使用。

referenceAnnotationBeanPostProcessor : 为@Reference注入对象,如果在spring boot启动类上配置了@DubboComponentScan 则默认不使用。

因为在@DubboComponentScan这个注解中引入了DubboComponentScanRegistrar这个注册类,该类中做了解析@service注解和@Reference的事情

@EnableDubboConfig

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Import(DubboConfigConfigurationSelector.class) // 主要作用是这个
public @interface EnableDubboConfig {/*** It indicates whether binding to multiple Spring Beans.** @return the default value is false* @revised 2.5.9*/boolean multiple() default false;}

主要的作用就是导入了这个类DubboConfigConfigurationSelector

DubboConfigConfigurationSelector

public class DubboConfigConfigurationSelector implements ImportSelector, Ordered {@Overridepublic String[] selectImports(AnnotationMetadata importingClassMetadata) {// 获取注解上的属性,这个是通过@EnableDubboConfig导入的,所以AnnotationMetadata里面就包含了这个注解的值AnnotationAttributes attributes = AnnotationAttributes.fromMap(importingClassMetadata.getAnnotationAttributes(EnableDubboConfig.class.getName()));// 是否是多配置,默认为falseboolean multiple = attributes.getBoolean("multiple");if (multiple) {return of(DubboConfigConfiguration.Multiple.class.getName());} else {// 这里就直接讲解单配置的。return of(DubboConfigConfiguration.Single.class.getName());}}private static T[] of(T... values) {return values;}@Overridepublic int getOrder() {return HIGHEST_PRECEDENCE;}}

DubboConfigConfigurationSelector这个类实现了ImportSelector 接口,该接口的selectImports方法就是返回bean的名称,供spring初始化,所以这里返回了

DubboConfigConfiguration.Single.class.getName() , spring就会初始化这个类了。

Single

DubboConfigConfiguration.Single的代码如下 , 通过@EnableDubboConfigBindings注解,导入了多个@EnableDubboConfigBinding

@EnableDubboConfigBindings({@EnableDubboConfigBinding(prefix = "dubbo.application", type = ApplicationConfig.class),@EnableDubboConfigBinding(prefix = "dubbo.module", type = ModuleConfig.class),@EnableDubboConfigBinding(prefix = "dubbo.registry", type = RegistryConfig.class),@EnableDubboConfigBinding(prefix = "dubbo.protocol", type = ProtocolConfig.class),@EnableDubboConfigBinding(prefix = "dubbo.monitor", type = MonitorConfig.class),@EnableDubboConfigBinding(prefix = "dubbo.provider", type = ProviderConfig.class),@EnableDubboConfigBinding(prefix = "dubbo.consumer", type = ConsumerConfig.class)})public static class Single {}

EnableDubboConfigBindings

由上面可以看到,spring在初始化Single这个类的时候,必然会加载他上面的注解,该类的主要作用就是为了导入它上面的注解,@EnableDubboConfigBindings

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(DubboConfigBindingsRegistrar.class) // 导入了这个类。
public @interface EnableDubboConfigBindings {/*** The value of {@link EnableDubboConfigBindings}** @return non-null*/EnableDubboConfigBinding[] value();}

@EnableDubboConfigBindings 注解导入了DubboConfigBindingsRegistrar这个类,该类的作用是将配置属性和dubbo的配置进行绑定。注解的value是7个子注解

@EnableDubboConfigBinding ,后面DubboConfigBindingsRegistrar解析的时候,会获取到这个7个子注解,将对应的属性和dubbo的配置类进行绑定。

DubboConfigBindingsRegistrar

public class DubboConfigBindingsRegistrar implements ImportBeanDefinitionRegistrar, EnvironmentAware {private ConfigurableEnvironment environment;@Overridepublic void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {// 获取导入此类的注解信息,@EnableDubboConfigBindingsAnnotationAttributes attributes = AnnotationAttributes.fromMap(importingClassMetadata.getAnnotationAttributes(EnableDubboConfigBindings.class.getName()));// 获取@EnableDubboConfigBinding 子注解AnnotationAttributes[] annotationAttributes = attributes.getAnnotationArray("value");// 初始化DubboConfigBindingRegistrar类,该类的主要作用就是为了解析单个的@EnableDubboConfigBinding注解DubboConfigBindingRegistrar registrar = new DubboConfigBindingRegistrar();registrar.setEnvironment(environment);for (AnnotationAttributes element : annotationAttributes) {// 循环注册,通过注解里面的信息,生成Dubbo配置的BeanDefinition,最后放入spring容器中,供spring容器实例化。registrar.registerBeanDefinitions(element, registry);}}@Overridepublic void setEnvironment(Environment environment) {Assert.isInstanceOf(ConfigurableEnvironment.class, environment);this.environment = (ConfigurableEnvironment) environment;}}

注册dubbo的配置bean

protected void registerBeanDefinitions(AnnotationAttributes attributes, BeanDefinitionRegistry registry) {//1. 从环境 中取出 响应的属性名 String prefix = environment.resolvePlaceholders(attributes.getString("prefix"));// 2. 获取dubbo的配置类的classClass configClass = attributes.getClass("type");// 3. 获取是否是多个dubbo的配置boolean multiple = attributes.getBoolean("multiple");// 注册dubbo的配置beanregisterDubboConfigBeans(prefix, configClass, multiple, registry);}

步骤说明:

1.参数attributes就是@EnableDubboConfigBinding里面的属性,获取prefix属性值,就是获取到了:dubbo.application

例:

@EnableDubboConfigBinding(prefix = "dubbo.application", type = ApplicationConfig.class)

2.获取dubbo的配置类的class,也就是获取到了ApplicationConfig.class

3.获取multiple的值,默认没有配置就是false

4.调用registerDubboConfigBeans方法生成dubbo的配置bean

private void registerDubboConfigBeans(String prefix,Class configClass,boolean multiple,BeanDefinitionRegistry registry) {// 根据属性名,如:dubbo.application 获取具体的属性值Map properties = getSubProperties(environment.getPropertySources(), prefix);if (CollectionUtils.isEmpty(properties)) {// 如果没有配置,则没有必要生成对应的dubbo配置bean了if (log.isDebugEnabled()) {log.debug("There is no property for binding to dubbo config class [" + configClass.getName()+ "] within prefix [" + prefix + "]");}return;}// BeanNameSet beanNames = multiple ? resolveMultipleBeanNames(properties) :Collections.singleton(resolveSingleBeanName(properties, configClass, registry));for (String beanName : beanNames) {// 生成benaregisterDubboConfigBean(beanName, configClass, registry);// 注册dubbo的DubboConfigBindingBeanPostProcessorregisterDubboConfigBindingBeanPostProcessor(prefix, beanName, multiple, registry);}}private void registerDubboConfigBean(String beanName, Class configClass,BeanDefinitionRegistry registry) {// 生成BeanDefinitionBuilderBeanDefinitionBuilder builder = rootBeanDefinition(configClass);AbstractBeanDefinition beanDefinition = builder.getBeanDefinition();// 通过BeanDefinitionRegistry注册dubbo的配置beanregistry.registerBeanDefinition(beanName, beanDefinition);if (log.isInfoEnabled()) {log.info("The dubbo config bean definition [name : " + beanName + ", class : " + configClass.getName() +"] has been registered.");}}

DubboConfigBindingBeanPostProcessor

这个类是在dubbo的配置类初始化完成后会执行响应的方法。用来将属性值设置到对应的属性里面去,在springboot中我们存在这种情况

first-name,firstName, FIRST_NAME , 比如我们在yaml文件中配置这样的属性,我们的java bean中的属性是firstName , 在使用@ConfigurationProperties

注解的时候我们无需担心,如果不是用springboot自身的config类来注入,那么我们自己处理这种情况就会变的非常麻烦,所以dubbo选择的是通过RelaxedDataBinder类来处理这个问题。这是spring boot的机制。

DubboConfigBindingBeanPostProcessor类实现了BeanPostProcessor,ApplicationContextAware, InitializingBean 这三个接口,下面是挑了一些重要的方法展示出来 , 每个dubbo配置类都有相应的DubboConfigBindingBeanPostProcessor

public DubboConfigBindingBeanPostProcessor(String prefix, String beanName) {Assert.notNull(prefix, "The prefix of Configuration Properties must not be null");Assert.notNull(beanName, "The name of bean must not be null");this.prefix = prefix; // 属性前缀this.beanName = beanName; // dubbo的配置类名}
@Override
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {// 会在每一个bean实例化之后、初始化(如afterPropertiesSet方法)之前被调用。if (beanName.equals(this.beanName) && bean instanceof AbstractConfig) {AbstractConfig dubboConfig = (AbstractConfig) bean;// 将属性和配置进行绑定dubboConfigBinder.bind(prefix, dubboConfig);if (log.isInfoEnabled()) {log.info("The properties of bean [name : " + beanName + "] have been binding by prefix of " +"configuration properties : " + prefix);}}return bean;}@Override
public void afterPropertiesSet() throws Exception {// DubboConfigBindingBeanPostProcessor 初始化之后就会执行if (dubboConfigBinder == null) {try {// 从容器中获取DubboConfigBinder , DubboConfigBinder的作用范围是prototype , 每次调用getbean都会新创建一个dubboConfigBinder = applicationContext.getBean(DubboConfigBinder.class);} catch (BeansException ignored) {if (log.isDebugEnabled()) {log.debug("DubboConfigBinder Bean can't be found in ApplicationContext.");}// Use Default implementationdubboConfigBinder = createDubboConfigBinder(applicationContext.getEnvironment());}}dubboConfigBinder.setIgnoreUnknownFields(ignoreUnknownFields);dubboConfigBinder.setIgnoreInvalidFields(ignoreInvalidFields);}

dubboConfigBinder的代码如下,下面主要就是调用springboot 的dataBinder机制进行属性设值了

public class RelaxedDubboConfigBinder extends AbstractDubboConfigBinder {@Overridepublic void bind(String prefix, C dubboConfig) {RelaxedDataBinder relaxedDataBinder = new RelaxedDataBinder(dubboConfig);// Set ignored*relaxedDataBinder.setIgnoreInvalidFields(isIgnoreInvalidFields());relaxedDataBinder.setIgnoreUnknownFields(isIgnoreUnknownFields());//从Environment中获取属性Map properties = getSubProperties(getPropertySources(), prefix);// 将属性MAP转换为MutablePropertyValuesMutablePropertyValues propertyValues = new MutablePropertyValues(properties);// 绑定relaxedDataBinder.bind(propertyValues);}
}

通过上面的源码,可以看出来,dubbo的配置是一环接着一环,很多时候一个不起眼的地方就是往下走的关键代码,他主要是通过注解的导入配置类,然后通过

BeanDefinitionRegistry生成对应的beanDefintion放入spring容器中。

本文所解析的这些源码均不涉及dubbo的核心功能,仅仅是讲了dubbo启动之后,如何获取到配置,如果进行配置装配,方便大家后续有个好的理解。

有兴趣可以看下一spring的扩展机制,dubbo中都有大量的使用到。

扩展Spring的几种方式​nobodyiam.com
8f05b0ee06b95e96d8aee5ea25f323eb.png
欢迎关注公众号【sharedCode】致力于主流中间件的源码分析, 可以直接与我联系



推荐阅读
  • 本文详细介绍了如何使用C#实现不同类型的系统服务账户(如Windows服务、计划任务和IIS应用池)的密码重置方法。 ... [详细]
  • ArcBlock 发布 ABT 节点 1.0.31 版本更新
    2020年11月9日,ArcBlock 区块链基础平台发布了 ABT 节点开发平台的1.0.31版本更新,此次更新带来了多项功能增强与性能优化。 ... [详细]
  • 本文基于Java官方文档进行了适当修改,旨在介绍如何实现一个能够同时处理多个客户端请求的服务端程序。在前文中,我们探讨了单客户端访问的服务端实现,而本篇将深入讲解多客户端环境下的服务端设计与实现。 ... [详细]
  • Spring Security基础配置详解
    本文详细介绍了Spring Security的基础配置方法,包括如何搭建Maven多模块工程以及具体的安全配置步骤,帮助开发者更好地理解和应用这一强大的安全框架。 ... [详细]
  • D17:C#设计模式之十六观察者模式(Observer Pattern)【行为型】
    一、引言今天是2017年11月份的最后一天,也就是2017年11月30日,利用今天再写一个模式,争取下个月(也就是12月份& ... [详细]
  • 深入理解线程池及其基本实现
    本文探讨了线程池的概念、优势及其在Java中的应用。通过实例分析不同类型的线程池,并指导如何构建一个简易的线程池。 ... [详细]
  • Asynchronous JavaScript and XML (AJAX) 的流行很大程度上得益于 Google 在其产品如 Google Suggest 和 Google Maps 中的应用。本文将深入探讨 AJAX 在 .NET 环境下的工作原理及其实现方法。 ... [详细]
  • Python3爬虫入门:pyspider的基本使用[python爬虫入门]
    Python学习网有大量免费的Python入门教程,欢迎大家来学习。本文主要通过爬取去哪儿网的旅游攻略来给大家介绍pyspid ... [详细]
  • Hibernate全自动全映射ORM框架,旨在消除sql,是一个持久层的ORM框架1)、基础概念DAO(DataAccessorOb ... [详细]
  • 本文探讨了Python类型注解使用率低下的原因,主要归结于历史背景和投资回报率(ROI)的考量。文章不仅分析了类型注解的实际效用,还回顾了Python类型注解的发展历程。 ... [详细]
  • 函子(Functor)是函数式编程中的一个重要概念,它不仅是一个特殊的容器,还提供了一种优雅的方式来处理值和函数。本文将详细介绍函子的基本概念及其在函数式编程中的应用,包括如何通过函子控制副作用、处理异常以及进行异步操作。 ... [详细]
  • Maven + Spring + MyBatis + MySQL 环境搭建与实例解析
    本文详细介绍如何使用MySQL数据库进行环境搭建,包括创建数据库表并插入示例数据。随后,逐步指导如何配置Maven项目,整合Spring框架与MyBatis,实现高效的数据访问。 ... [详细]
  • 本文详细介绍了如何在Oracle VM VirtualBox中实现主机与虚拟机之间的数据交换,包括安装Guest Additions增强功能,以及如何利用这些功能进行文件传输、屏幕调整等操作。 ... [详细]
  • 本文详细介绍了 `org.apache.tinkerpop.gremlin.structure.VertexProperty` 类中的 `key()` 方法,并提供了多个实际应用的代码示例。通过这些示例,读者可以更好地理解该方法在图数据库操作中的具体用途。 ... [详细]
  • Beetl是一款先进的Java模板引擎,以其丰富的功能、直观的语法、卓越的性能和易于维护的特点著称。它不仅适用于高响应需求的大型网站,也适合功能复杂的CMS管理系统,提供了一种全新的模板开发体验。 ... [详细]
author-avatar
pomngjkldjg_849_788
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有