色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

Java Apollo是如何實現配置更新的

瀏覽:2日期:2022-08-15 17:54:26

這篇文檔主要關注下配置修改后對應的 Java 對象是如何更新,并不關注整體的配置改動流程

所有代碼都來自 apollo-client 項目

更新流程

在 Apollo 控制臺進行配置修改并發布后,對應的 client 端拉取到更新后,會調用到 com.ctrip.framework.apollo.spring.property.AutoUpdateConfigChangeListener#onChange 方法

在調用 onChange 會收到對應的修改的配置信息 ConfigChangeEvent, 其中包含改動的 key 和 value, 則改動流程如下:

根據改動的配置的 key 從 springValueRegistry 找到對應的關聯到這個 key 的 Spring Bean 信息,如果找不到則不處理 根據找到的 Spring Bean 信息,進行對應關聯配置的更新

在第二步中會判斷關聯配置是用過屬性關聯還是方法進行關聯的,代碼如下

public void update(Object newVal) throws IllegalAccessException, InvocationTargetException { if (isField()) { injectField(newVal); } else { injectMethod(newVal); }}

在上面的問題中,還有兩個問題存疑

如何通過 key 找到對應的 Spring Bean 信息 如何將 Apollo 的配置值轉換為 Spring 的識別的值

public class AutoUpdateConfigChangeListener implements ConfigChangeListener{ private static final Logger logger = LoggerFactory.getLogger(AutoUpdateConfigChangeListener.class); private final boolean typeConverterHasConvertIfNecessaryWithFieldParameter; private final Environment environment; private final ConfigurableBeanFactory beanFactory; private final TypeConverter typeConverter; private final PlaceholderHelper placeholderHelper; private final SpringValueRegistry springValueRegistry; private final Gson gson; public AutoUpdateConfigChangeListener(Environment environment, ConfigurableListableBeanFactory beanFactory){ this.typeConverterHasConvertIfNecessaryWithFieldParameter = testTypeConverterHasConvertIfNecessaryWithFieldParameter(); this.beanFactory = beanFactory; this.typeConverter = this.beanFactory.getTypeConverter(); this.environment = environment; this.placeholderHelper = SpringInjector.getInstance(PlaceholderHelper.class); this.springValueRegistry = SpringInjector.getInstance(SpringValueRegistry.class); this.gson = new Gson(); } @Override public void onChange(ConfigChangeEvent changeEvent) { Set<String> keys = changeEvent.changedKeys(); if (CollectionUtils.isEmpty(keys)) { return; } for (String key : keys) { // 1. check whether the changed key is relevant Collection<SpringValue> targetValues = springValueRegistry.get(beanFactory, key); if (targetValues == null || targetValues.isEmpty()) { continue; } // 2. update the value for (SpringValue val : targetValues) { updateSpringValue(val); } } } private void updateSpringValue(SpringValue springValue) { try { Object value = resolvePropertyValue(springValue); springValue.update(value); logger.info('Auto update apollo changed value successfully, new value: {}, {}', value, springValue); } catch (Throwable ex) { logger.error('Auto update apollo changed value failed, {}', springValue.toString(), ex); } } /** * Logic transplanted from DefaultListableBeanFactory * @see org.springframework.beans.factory.support.DefaultListableBeanFactory#doResolveDependency(org.springframework.beans.factory.config.DependencyDescriptor, java.lang.String, java.util.Set, org.springframework.beans.TypeConverter) */ private Object resolvePropertyValue(SpringValue springValue) { // value will never be null, as @Value and @ApolloJsonValue will not allow that Object value = placeholderHelper .resolvePropertyValue(beanFactory, springValue.getBeanName(), springValue.getPlaceholder()); if (springValue.isJson()) { value = parseJsonValue((String)value, springValue.getGenericType()); } else { if (springValue.isField()) { // org.springframework.beans.TypeConverter#convertIfNecessary(java.lang.Object, java.lang.Class, java.lang.reflect.Field) is available from Spring 3.2.0+ if (typeConverterHasConvertIfNecessaryWithFieldParameter) { value = this.typeConverter .convertIfNecessary(value, springValue.getTargetType(), springValue.getField()); } else { value = this.typeConverter.convertIfNecessary(value, springValue.getTargetType()); } } else { value = this.typeConverter.convertIfNecessary(value, springValue.getTargetType(), springValue.getMethodParameter()); } } return value; } private Object parseJsonValue(String json, Type targetType) { try { return gson.fromJson(json, targetType); } catch (Throwable ex) { logger.error('Parsing json ’{}’ to type {} failed!', json, targetType, ex); throw ex; } } private boolean testTypeConverterHasConvertIfNecessaryWithFieldParameter() { try { TypeConverter.class.getMethod('convertIfNecessary', Object.class, Class.class, Field.class); } catch (Throwable ex) { return false; } return true; }}如何將配置 key 和 Spring Bean 關聯起來

在 Spring 常見配置包括 2 種

public class ApiConfig { // 1. 直接在 Field 是進行注入 @Value('${feifei.appId}') protected String appId; protected String predUrl; // 2. 在方法上進行注入 @Value('${predUrl}') public void setPredUrl(String predUrl) { this.predUrl = predUrl; }}

在 Apollo 代碼中,通過實現 BeanPostProcessor 接口來檢測所有的Spring Bean 的創建過程,在 Spring Bean 創建的過程中會調用對應的 org.springframework.beans.factory.config.BeanPostProcessor#postProcessBeforeInitialization 和 org.springframework.beans.factory.config.BeanPostProcessor#postProcessAfterInitialization 方法。

Apollo 通過在 Bean 生成過程中,檢測 Bean 類中屬性和方法是否存在 @Value 注解,如果存在,提出其中的 key, 其處理方法在 processField 和 processMethod 分別處理 Field 和 Method 中可能出現的 @Value 注解。如果存在注解則將對應的信息存到 SpringValue 對應 springValueRegistry 全局對象中,方便在其它地方可以直接獲取。

在屬性除了通過 @Value 注入,也可以用過 xml 進行配置,在這種情況通過 processBeanPropertyValues 方法來處理

通過兩種處理方式就可以將 key 和對應的 Spring Bean 信息關聯起來

public class SpringValueProcessor extends ApolloProcessor implements BeanFactoryPostProcessor, BeanFactoryAware { private static final Logger logger = LoggerFactory.getLogger(SpringValueProcessor.class); private final ConfigUtil configUtil; private final PlaceholderHelper placeholderHelper; private final SpringValueRegistry springValueRegistry; private BeanFactory beanFactory; private Multimap<String, SpringValueDefinition> beanName2SpringValueDefinitions; public SpringValueProcessor() { configUtil = ApolloInjector.getInstance(ConfigUtil.class); placeholderHelper = SpringInjector.getInstance(PlaceholderHelper.class); springValueRegistry = SpringInjector.getInstance(SpringValueRegistry.class); beanName2SpringValueDefinitions = LinkedListMultimap.create(); } @Override public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException { if (configUtil.isAutoUpdateInjectedSpringPropertiesEnabled() && beanFactory instanceof BeanDefinitionRegistry) { beanName2SpringValueDefinitions = SpringValueDefinitionProcessor .getBeanName2SpringValueDefinitions((BeanDefinitionRegistry) beanFactory); } } @Override public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { if (configUtil.isAutoUpdateInjectedSpringPropertiesEnabled()) { super.postProcessBeforeInitialization(bean, beanName); processBeanPropertyValues(bean, beanName); } return bean; } @Override protected void processField(Object bean, String beanName, Field field) { // register @Value on field Value value = field.getAnnotation(Value.class); if (value == null) { return; } Set<String> keys = placeholderHelper.extractPlaceholderKeys(value.value()); if (keys.isEmpty()) { return; } for (String key : keys) { SpringValue springValue = new SpringValue(key, value.value(), bean, beanName, field, false); springValueRegistry.register(beanFactory, key, springValue); logger.debug('Monitoring {}', springValue); } } @Override protected void processMethod(Object bean, String beanName, Method method) { //register @Value on method Value value = method.getAnnotation(Value.class); if (value == null) { return; } //skip Configuration bean methods if (method.getAnnotation(Bean.class) != null) { return; } if (method.getParameterTypes().length != 1) { logger.error('Ignore @Value setter {}.{}, expecting 1 parameter, actual {} parameters', bean.getClass().getName(), method.getName(), method.getParameterTypes().length); return; } Set<String> keys = placeholderHelper.extractPlaceholderKeys(value.value()); if (keys.isEmpty()) { return; } for (String key : keys) { SpringValue springValue = new SpringValue(key, value.value(), bean, beanName, method, false); springValueRegistry.register(beanFactory, key, springValue); logger.info('Monitoring {}', springValue); } } private void processBeanPropertyValues(Object bean, String beanName) { Collection<SpringValueDefinition> propertySpringValues = beanName2SpringValueDefinitions .get(beanName); if (propertySpringValues == null || propertySpringValues.isEmpty()) { return; } for (SpringValueDefinition definition : propertySpringValues) { try { PropertyDescriptor pd = BeanUtils .getPropertyDescriptor(bean.getClass(), definition.getPropertyName()); Method method = pd.getWriteMethod(); if (method == null) { continue; } SpringValue springValue = new SpringValue(definition.getKey(), definition.getPlaceholder(), bean, beanName, method, false); springValueRegistry.register(beanFactory, definition.getKey(), springValue); logger.debug('Monitoring {}', springValue); } catch (Throwable ex) { logger.error('Failed to enable auto update feature for {}.{}', bean.getClass(), definition.getPropertyName()); } } // clear beanName2SpringValueDefinitions.removeAll(beanName); } @Override public void setBeanFactory(BeanFactory beanFactory) throws BeansException { this.beanFactory = beanFactory; }}

以上就是Java Apollo是如何實現配置更新的的詳細內容,更多關于Java Apollo 配置更新的資料請關注好吧啦網其它相關文章!

標簽: Java
相關文章:
主站蜘蛛池模板: 在线视频免费国产成人 | 一区二区三区视频免费观看 | 久草日韩| 91国内精品久久久久免费影院 | 国产在线精品香蕉综合网一区 | 男人女人做黄刺激性视频免费 | 91精品国产一区二区三区左线 | 久久综合精品不卡一区二区 | 精品免费久久久久久成人影院 | 日本成人免费观看 | 国产一区二区三区视频在线观看 | 国产美女拍拍拍在线观看 | 精品免费久久久久久成人影院 | 亚洲女人被黑人猛躁进女人 | 欧美一二三 | 成人观看免费大片在线观看 | 67194国产精品 | 日本一本久道 | 欧美日本一区亚洲欧美一区 | 久久亚洲精品视频 | 国产福利片在线 易阳 | 日本肥老妇色xxxxx日本老妇 | 国产在线a不卡免费视频 | 免费在线观看亚洲 | 一级毛片在线免费播放 | 国产午夜亚洲精品 | 亚洲精品高清在线 | 亚洲精品日韩专区在线观看 | 99精品国产一区二区三区 | 亚洲精品视频专区 | 亚洲国产视频网 | 国内精品伊人久久久影视 | 毛片免费观看的视频 | 欧美日韩视频在线第一区 | 欧美精品专区免费观看 | 久久欧美精品欧美久久欧美 | 在线观看日本www | 91成人免费观看网站 | 五月色婷婷综合开心网4438 | 国产欧美视频综合二区 | 亚洲视频网址 |