feign使用熔断器,直接熔断
程序员文章站
2022-07-15 13:07:09
...
项目中配置熔断器,开启之后直接熔断走fallback,明明下游服务可用!!!!
各种debug,看源码,差资料,无解。debug只是显示阻塞。
后来我再fallback方法中手工抛了个异常RuntimeException,终于在控制台得到异常信息,指向到某个过滤器。
@Override
public String test() {
System.out.println("进入熔断器了");
throw new RuntimeException();
}
如果不手工抛这个RuntimeException。不会读取到任何异常。
异常所在如下:
public class FeignRequestInterceptor implements RequestInterceptor {
/**
* 设置请求头,传递登录信息
*
* @param template
*/
@Override
public void apply(RequestTemplate template) {
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder
.getRequestAttributes();
HttpServletRequest request = attributes.getRequest();
Enumeration<String> headerNames = request.getHeaderNames();
if (headerNames != null) {
while (headerNames.hasMoreElements()) {
String name = headerNames.nextElement();
String values = request.getHeader(name);
template.header(name, values);
}
}
}
}
这个过滤中,我们对feign的header进行了传递,但是报了request的空指针异常在fallback中手工抛异常后,控制台报错如下:
Caused by: java.lang.NullPointerException
at com.chinamobile.bcsec.usercontroller.interceptor.FeignRequestInterceptor.apply(FeignRequestInterceptor.java:27)
at feign.SynchronousMethodHandler.targetRequest(SynchronousMethodHandler.java:163)
at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:89)
at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:77)
at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:107)
at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302)
at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298)
at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46)
... 26 more
至此终于确定是此异常导致的熔断。
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder
.getRequestAttributes();
这个强转需要判断一下,再转,否者下面一行会存在空指针的风险。熔断器就会直接熔断,不做任何提示。
HttpServletRequest request = attributes.getRequest();
很坑,如果不是凑巧在fallback中手动抛了个运行时异常,系统根本不会报异常信息,不知道为何。
上一篇: python 中为什么不需要重载
推荐阅读
-
springcloud 熔断器Hystrix的具体使用
-
SpringCloud-使用熔断器仪表盘监控熔断
-
SpringCloud-使用熔断器防止服务雪崩-Ribbon和Feign方式(附代码下载)
-
feign使用熔断器,直接熔断
-
从实例一步一步入门学习SpringCloud的Eureka、Ribbon、Feign、熔断器、Zuul的简单使用(附代码下载)
-
feign使用hystrix熔断的配置
-
SpringCloud-使用熔断器仪表盘监控熔断
-
SpringCloud-使用熔断器防止服务雪崩-Ribbon和Feign方式(附代码下载)
-
从实例一步一步入门学习SpringCloud的Eureka、Ribbon、Feign、熔断器、Zuul的简单使用(附代码下载)
-
feign使用hystrix熔断的配置