feign自定义的fallback调用出错

feign的client端调用service端,在调用到service端的时候还会去执行自定义的fallback可能有两种情况::一种是在执行service的时候报错,另外一种是调用service端的时候超时.调用service端的时候默认的请求时间为1秒,超过这个时间便超时异常.
1、把时间设长


hystrix:
  command:
      default:
        execution:
          isolation:
            thread:
              timeoutInMilliseconds: 5000

2、把超时发生异常属性关闭

hystrix:
  command:
      default:
        execution:
          timeout:
            enabled: false

3、禁用feign的hystrix


feign:
  hystrix:
    enabled: false

原文博客地址:https://blog.csdn.net/qwlzxx/article/details/77163268

你可能感兴趣的:(springboot)