0%

Feign与Hystrix

Feign与Hystrix

Feign默认已经整合了hystrix,只是默认是没有启用的,需要进行配置

1
2
3
feign:
hystrix:
enabled: true

可以看到如果配置了feign.hystrix.enabled会使用HystrixFeign.builder()来构建Feign,将具体的调用包裹在HystrixCommand 中

1
2
3
4
5
6
7
8
9
10
11
12
13
@Configuration(proxyBeanMethods = false)
@ConditionalOnClass({ HystrixCommand.class, HystrixFeign.class })
protected static class HystrixFeignConfiguration {

@Bean
@Scope("prototype")
@ConditionalOnMissingBean
@ConditionalOnProperty(name = "feign.hystrix.enabled")
public Feign.Builder feignHystrixBuilder() {
return HystrixFeign.builder();
}

}

和 Feign 使用的时候需要注意错误处理的问题。对于一些非功能性的业务错误,需要包装为 HystrixBadRequestException,让 Hystrix 不要统计到错误中造成断路

虽然开启了hystrix,但是其默认不带有监控端点,如果想要使用监控端点,需要加依赖

1
2
3
4
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>

然后启动类上增加@EnableCircuitBreaker注解,并开启端点

1
2
3
4
5
management:
endpoints:
web:
exposure:
include: 'hystrix.stream'

欢迎关注我的其它发布渠道