Code optimization for rpc-enhancement module (#510)
parent
efa4873753
commit
10eabfe588
@ -0,0 +1,66 @@
|
|||||||
|
/*
|
||||||
|
* Tencent is pleased to support the open source community by making Spring Cloud Tencent available.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the BSD 3-Clause License (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://opensource.org/licenses/BSD-3-Clause
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software distributed
|
||||||
|
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||||||
|
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations under the License.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.tencent.cloud.rpc.enhancement.feign;
|
||||||
|
|
||||||
|
import java.util.Comparator;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.google.common.collect.ArrayListMultimap;
|
||||||
|
import com.google.common.collect.Multimap;
|
||||||
|
import com.tencent.cloud.rpc.enhancement.feign.plugin.EnhancedFeignContext;
|
||||||
|
import com.tencent.cloud.rpc.enhancement.feign.plugin.EnhancedFeignPlugin;
|
||||||
|
import com.tencent.cloud.rpc.enhancement.feign.plugin.EnhancedFeignPluginType;
|
||||||
|
|
||||||
|
import org.springframework.util.CollectionUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default plugin runner.
|
||||||
|
*
|
||||||
|
* @author Derek Yi 2022-08-16
|
||||||
|
*/
|
||||||
|
public class DefaultEnhancedFeignPluginRunner implements EnhancedFeignPluginRunner {
|
||||||
|
|
||||||
|
private Multimap<String, EnhancedFeignPlugin> pluginMap = ArrayListMultimap.create();
|
||||||
|
|
||||||
|
public DefaultEnhancedFeignPluginRunner(List<EnhancedFeignPlugin> enhancedFeignPlugins) {
|
||||||
|
if (!CollectionUtils.isEmpty(enhancedFeignPlugins)) {
|
||||||
|
enhancedFeignPlugins.stream()
|
||||||
|
.sorted(Comparator.comparing(EnhancedFeignPlugin::getOrder))
|
||||||
|
.forEach(plugin -> pluginMap.put(plugin.getType().name(), plugin));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* run the plugin.
|
||||||
|
*
|
||||||
|
* @param pluginType type of plugin
|
||||||
|
* @param context context in enhanced feign client.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void run(EnhancedFeignPluginType pluginType, EnhancedFeignContext context) {
|
||||||
|
for (EnhancedFeignPlugin plugin : pluginMap.get(pluginType.name())) {
|
||||||
|
try {
|
||||||
|
plugin.run(context);
|
||||||
|
}
|
||||||
|
catch (Throwable throwable) {
|
||||||
|
plugin.handlerThrowable(context, throwable);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* Tencent is pleased to support the open source community by making Spring Cloud Tencent available.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the BSD 3-Clause License (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://opensource.org/licenses/BSD-3-Clause
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software distributed
|
||||||
|
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||||||
|
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations under the License.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.tencent.cloud.rpc.enhancement.feign;
|
||||||
|
|
||||||
|
import com.tencent.cloud.rpc.enhancement.feign.plugin.EnhancedFeignContext;
|
||||||
|
import com.tencent.cloud.rpc.enhancement.feign.plugin.EnhancedFeignPluginType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin runner.
|
||||||
|
*
|
||||||
|
* @author Derek Yi 2022-08-16
|
||||||
|
*/
|
||||||
|
public interface EnhancedFeignPluginRunner {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* run the plugin.
|
||||||
|
*
|
||||||
|
* @param pluginType type of plugin
|
||||||
|
* @param context context in enhanced feign client.
|
||||||
|
*/
|
||||||
|
void run(EnhancedFeignPluginType pluginType, EnhancedFeignContext context);
|
||||||
|
}
|
@ -1,66 +0,0 @@
|
|||||||
/*
|
|
||||||
* Tencent is pleased to support the open source community by making Spring Cloud Tencent available.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
|
|
||||||
*
|
|
||||||
* Licensed under the BSD 3-Clause License (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* https://opensource.org/licenses/BSD-3-Clause
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software distributed
|
|
||||||
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
||||||
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.tencent.cloud.rpc.enhancement.resttemplate;
|
|
||||||
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import org.springframework.beans.BeansException;
|
|
||||||
import org.springframework.beans.factory.SmartInitializingSingleton;
|
|
||||||
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
|
|
||||||
import org.springframework.context.ApplicationContext;
|
|
||||||
import org.springframework.context.ApplicationContextAware;
|
|
||||||
import org.springframework.lang.NonNull;
|
|
||||||
import org.springframework.util.ObjectUtils;
|
|
||||||
import org.springframework.web.client.RestTemplate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Autoconfiguration RestTemplate, Find the RestTemplate bean annotated with {@link LoadBalanced},
|
|
||||||
* then replace {@link org.springframework.web.client.ResponseErrorHandler}
|
|
||||||
* with {@link EnhancedRestTemplateReporter} .
|
|
||||||
*
|
|
||||||
* @author wh 2022/6/21
|
|
||||||
*/
|
|
||||||
public class EnhancedRestTemplateModifier implements ApplicationContextAware, SmartInitializingSingleton {
|
|
||||||
|
|
||||||
private final EnhancedRestTemplateReporter enhancedRestTemplateReporter;
|
|
||||||
private ApplicationContext applicationContext;
|
|
||||||
|
|
||||||
public EnhancedRestTemplateModifier(EnhancedRestTemplateReporter enhancedRestTemplateReporter) {
|
|
||||||
this.enhancedRestTemplateReporter = enhancedRestTemplateReporter;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void afterSingletonsInstantiated() {
|
|
||||||
Map<String, Object> beans = this.applicationContext.getBeansWithAnnotation(LoadBalanced.class);
|
|
||||||
if (!ObjectUtils.isEmpty(beans)) {
|
|
||||||
beans.forEach(this::initRestTemplate);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void initRestTemplate(String beanName, Object bean) {
|
|
||||||
if (bean instanceof RestTemplate) {
|
|
||||||
RestTemplate restTemplate = (RestTemplate) bean;
|
|
||||||
restTemplate.setErrorHandler(enhancedRestTemplateReporter);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setApplicationContext(@NonNull ApplicationContext applicationContext) throws BeansException {
|
|
||||||
this.applicationContext = applicationContext;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue