How to disable hystrix in one of multiple feign clients
问题 In my spring boot application I use multiple feign clients (@FeignClient("hello-service")). In the case of many of them, I need a mechanism of circuit breaker, so I have following line to the configuration. feign.hystrix.enabled=true However I'don't know how I can configure specific feign client not to use Hystrix. Is it possible? Has anyone managed to configure the spring applications in this way? 回答1: You can create you own configuration with disabled hystrix functionality, and use it for