zoukankan      html  css  js  c++  java
  • Zuul整合Hystrix断路器

    在Zuul工程中

    1、增加Zuul的Hystrix的配置

     并且设置超时时间为2毫秒

    2、增加业务降级处理

    **
     * 业务降级处理
     */
    @Component
    public class MyFallback  implements FallbackProvider {
    
        //针对哪一个路由进行降级, return 可以写*
        @Override
        public String getRoute() {
            return "film-service";
        }
    
        //降级时处理方式
        @Override
        public ClientHttpResponse fallbackResponse(String route, Throwable cause) {
            return new ClientHttpResponse() {
                @Override
                public HttpStatus getStatusCode() throws IOException {
                    return HttpStatus.OK;
                }
    
                @Override
                public int getRawStatusCode() throws IOException {
                    return 200;
                }
    
                @Override
                public String getStatusText() throws IOException {
                    return "OK";
                }
    
                @Override
                public void close() {
    
                }
    
                //业务降级处理方式
                @Override
                public InputStream getBody() throws IOException {
                    BaseResponseVO responseVO =  BaseResponseVO.serviceException(
                            new CommonServiceException(404,"System error!~"));
                    String result = JSONObject.toJSONString(responseVO);
    
                    return new ByteArrayInputStream(result.getBytes());
                }
    
                @Override
                public HttpHeaders getHeaders() {
                    HttpHeaders headers = new HttpHeaders();
                    headers.setContentType(MediaType.APPLICATION_JSON);
                    return headers;
                }
            };
        }
    }
    

      

    3、测试

    因为设置超时时间为2毫秒,所以肯定会触发降级

  • 相关阅读:
    Firefox常用web开发插件
    引用MFC指针的获取(转载)
    J2EE的13种核心技术(转载)
    用Visio画ER图的解决方案(转载)
    [导入]六一
    [导入]独自等待
    [导入]随想
    [导入]小聚
    [导入]网站需求分析
    [导入]如何做好网站开发项目需求分析
  • 原文地址:https://www.cnblogs.com/linlf03/p/12548298.html
Copyright © 2011-2022 走看看