博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
扩展Spring Cloud Feign 实现自动降级
阅读量:6038 次
发布时间:2019-06-20

本文共 3860 字,大约阅读时间需要 12 分钟。

自动降级目的

在Spring Cloud 使用feign 的时候,需要明确指定fallback 策略,不然会提示错误

先来看默认的feign service 是要求怎么做的。feign service 定义一个 factory 和 fallback 的类

@FeignClient(value = ServiceNameConstants.UMPS_SERVICE, fallbackFactory = RemoteLogServiceFallbackFactory.class)public interface RemoteLogService {}复制代码

但是我们大多数情况的feign 降级策略为了保证幂等都会很简单,输出错误日志即可。 类似如下代码,在企业中开发非常不方便

@Slf4j@Componentpublic class RemoteLogServiceFallbackImpl implements RemoteLogService {	@Setter	private Throwable cause;	@Override	public R
saveLog(SysLog sysLog, String from) { log.error("feign 插入日志失败", cause); return null; }}复制代码

自动降级效果

@FeignClient(value = ServiceNameConstants.UMPS_SERVICE)public interface RemoteLogService {}复制代码
  • Feign Service 完成同样的降级错误输出
  • FeignClient 中无需定义无用的fallbackFactory
  • FallbackFactory 也无需注册到Spring 容器中

代码变化,去掉FeignClient 指定的降级工厂

代码变化,删除降级相关的代码

核心源码

  1. 注入我们个性化后的Feign
@Configuration@ConditionalOnClass({HystrixCommand.class, HystrixFeign.class})protected static class HystrixFeignConfiguration {	@Bean	@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)	@ConditionalOnProperty("feign.hystrix.enabled")	public Feign.Builder feignHystrixBuilder(FeignContext feignContext) {		return PigxHystrixFeign.builder(feignContext)				.decode404()				.errorDecoder(new PigxFeignErrorDecoder());	}}复制代码
  1. PigxHystrixFeign.target 方法是根据@FeignClient 注解生成代理类的过程,注意注释
@Overridepublic 
T target(Target
target) { Class
targetType = target.type(); FeignClient feignClient = AnnotatedElementUtils.getMergedAnnotation(targetType, FeignClient.class); String factoryName = feignClient.name(); SetterFactory setterFactoryBean = this.getOptional(factoryName, feignContext, SetterFactory.class); if (setterFactoryBean != null) { this.setterFactory(setterFactoryBean); } // 以下为获取降级策略代码,构建降级,这里去掉了降级非空的非空的校验 Class
fallback = feignClient.fallback(); if (fallback != void.class) { return targetWithFallback(factoryName, feignContext, target, this, fallback); } Class
fallbackFactory = feignClient.fallbackFactory(); if (fallbackFactory != void.class) { return targetWithFallbackFactory(factoryName, feignContext, target, this, fallbackFactory); } return build().newInstance(target);}复制代码
  1. 构建feign 客户端执行PigxHystrixInvocationHandler的增强
Feign build(@Nullable final FallbackFactory
nullableFallbackFactory) { super.invocationHandlerFactory((target, dispatch) -> new PigxHystrixInvocationHandler(target, dispatch, setterFactory, nullableFallbackFactory)); super.contract(new HystrixDelegatingContract(contract)); return super.build(); }复制代码
  1. PigxHystrixInvocationHandler.getFallback() 获取降级策略
@Override	@Nullable	@SuppressWarnings("unchecked")	protected Object getFallback() {	        // 如果 @FeignClient  没有配置降级策略,使用动态代理创建一个			if (fallbackFactory == null) {				fallback = PigxFeignFallbackFactory.INSTANCE.create(target.type(), getExecutionException());			} else {			  // 如果 @FeignClient配置降级策略,使用配置的				fallback = fallbackFactory.create(getExecutionException());			}	}复制代码
  1. PigxFeignFallbackFactory.create 动态代理逻辑
public T create(final Class
type, final Throwable cause) { return (T) FALLBACK_MAP.computeIfAbsent(type, key -> { Enhancer enhancer = new Enhancer(); enhancer.setSuperclass(key); enhancer.setCallback(new PigxFeignFallbackMethod(type, cause)); return enhancer.create(); }); }复制代码
  1. PigxFeignFallbackMethod.intercept, 默认的降级逻辑,输出降级方法信息和错误信息,并且把错误格式
public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) {	log.error("Fallback class:[{}] method:[{}] message:[{}]",			type.getName(), method.getName(), cause.getMessage());	if (R.class == method.getReturnType()) {		final R result = cause instanceof PigxFeignException ?				((PigxFeignException) cause).getResult() : R.builder()				.code(CommonConstants.FAIL)				.msg(cause.getMessage()).build();		return result;	}	return null;}复制代码

关注我们

转载地址:http://qnlhx.baihongyu.com/

你可能感兴趣的文章
织梦dedecms安全设置详情
查看>>
Delphi常用关键字用法详解
查看>>
负面话语的危害
查看>>
Android 技巧 - Debug 判断不再用 BuildConfig
查看>>
算法笔记_224:夺冠概率模拟(Java)
查看>>
整型数字按位取
查看>>
2015百度之星初赛2 1005 序列变换(LIS变形)
查看>>
USACO 5.1.1凸包
查看>>
sql assist字符匹配智能提示
查看>>
tcMalloc 配置和优化 nginx 高性能
查看>>
P1186 玛丽卡
查看>>
Mac下Homebrew的图形化界面工具Cakebrew
查看>>
数据库存储 层次、树形结构 的标准做法
查看>>
[转] 一个小时学会Git
查看>>
maven资源文件的相关配置
查看>>
django学习2 视图和模板
查看>>
soap的调用方式
查看>>
IDEA 运行maven命令时报错: -Dmaven.multiModuleProjectDirectory system propery is not set
查看>>
01Hadoop二次排序
查看>>
myeclipse中java文件头注释格式设置
查看>>