欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

spring cloud hystrix 超时时间使用方式详解

程序员文章站 2022-04-02 10:08:44
我们在使用后台微服务的时候,各个服务之前会有很多请求和交叉业务。这里会引起雪崩、超时等异常处理。springcloud hystrix服务降级、容错机治理使 hystrix 有很好的支持,引入后实现断...

我们在使用后台微服务的时候,各个服务之前会有很多请求和交叉业务。这里会引起雪崩、超时等异常处理。springcloud hystrix服务降级、容错机治理使 hystrix 有很好的支持,引入后实现断路器功能。

1:pom 引入jar包

<dependency>
        <groupid>org.springframework.cloud</groupid>
        <artifactid>spring-cloud-starter-netflix-hystrix</artifactid>
      </dependency>

2:添加注解

application中增加 @enablecircuitbreaker 开启hystrix功能

3:配置文件配置

注意:feign中的hystrix的enabled属性要设置true

hystrix:
 command:
  transferapprove: # 这里是要设置超时时间的方法,如新增其他方法需要增加此节点信息。
   execution:
    isolation:
     thread:
      timeoutinmilliseconds: 6000 #默认连接超时时间是1秒

4:增加代码

  代码注意fastorbatchfallback的出参和入参要和设置了@hystrixcommand注解方法一致,否则会抛出异常。

 @override
  @hystrixcommand(fallbackmethod = "fastorbatchfallback")
  public resultmodel transferapprove(transferapprovedto dto) {
    log.info("调动流程审批:{}", dto);
    if (stringutils.isempty(dto.getoperatorid())
        || stringutils.isempty(dto.getflownos())
        || stringutils.isempty(dto.getoperatorid())) {
      return resultmodel.fail(-1, "参数异常");
    }
  }
 
 
  public resultmodel fastorbatchfallback(transferapprovedto transferapprovedto) {
    log.info("请求ps服务超时,请稍后再试.入参:{}", gsonutils.tojsonstring(transferapprovedto));
    return resultmodel.fail("请求服务超时,请稍后再试", "ps服务超时,请稍后再试");
  }

5: 待解决和研究问题? 

hystrix 执行了fallback之后是否继续走其他逻辑,目前可知的是继续走其他逻辑,如果让它不触发后序的逻辑怎么配置?

这里先打一个问号,欢迎大家一起讨论和解决。

到此这篇关于spring cloud hystrix 超时时间使用方式的文章就介绍到这了,更多相关spring cloud超时时间内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!