Hystrix 对Feign的支持
=================
如前文所述,在使用Feign库时,默认情况下会为应用程序启用Hystrix, 但这仅适用于旧版本的Spring Cloud. 根据最新版Spring Cloud 的说明文档,开发人员应该将feign.hystrix.cnabled属性设置为true,这会强制Feign用断路器包裹所有方法。
➊注意:
在Spring Cloud Dalston发布之前,如果Hytrix在类路径上,则Feign默认会将所有方法包裹在断路器中。
在Spring Cloud Dalston版本中更改了此默认行为,转而采用了选择性加入的方法。
将Hytrix与Feign 客户端一起使用时, 要提供以前在@HystrixCommand中使用@HystrixProperty设置的配置属性,最简单的方法是通过aplication.yml文件。以下是之前提供的示例的等效配置。
hystrix:
command:
default:
circuitBreaker:
requestVolumeThreshold: 10
errorThresholdPercentage: 30
sleepWi ndowInMilliseconds: 10000
execution:
isolation:
thread:
timeout InMilliseconds: 1000
metrics:
rollingstats: