我是靠谱客的博主 温柔老虎,最近开发中收集的这篇文章主要介绍Spring Cloud使用Sentinel做为Feign的熔断器之Fallback统一处理,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
参考博客:https://blog.csdn.net/ttzommed/article/details/90669320
原文中编写FunSentinelFeign类时,由于SentinelInvocationHandler方法的构造函数并不是public修饰
return new SentinelInvocationHandler(target, dispatch, funFallbackFactory),会报错。修改为使用反射调用
//获取指定的构造方法
Constructor<SentinelInvocationHandler> constructor = SentinelInvocationHandler.class.
getDeclaredConstructor(Target.class, Map.class, FallbackFactory.class);
constructor.setAccessible(true);
return constructor.newInstance(target, dispatch, new FallbackFactory.Default(fallbackInstance));
demo地址:gitee
最后
以上就是温柔老虎为你收集整理的Spring Cloud使用Sentinel做为Feign的熔断器之Fallback统一处理的全部内容,希望文章能够帮你解决Spring Cloud使用Sentinel做为Feign的熔断器之Fallback统一处理所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复