跟我学Spring Cloud(Finchley版)-18-Zuul深入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跟我学Spring Cloud(Finchley版)-18-Zuul深入相关的知识,希望对你有一定的参考价值。
本节探讨Zuul的高级特性。
TIPS:
笔者已经写过很多Zuul相关的文章,对于已经写过的内容,就不再啰嗦一遍了,直接贴地址吧。
过滤器详解
过滤器是Zuul的核心,Zuul大多功能都是基于过滤器实现的。详见:Spring Cloud Zuul过滤器详解,文章着重探讨了Zuul过滤器的生命周期、如何自定义过滤器、如何禁用指定过滤器等。
内置过滤器详解
Zuul内置了很多过滤器,这些过滤器帮助我们实现各种能力,来分析一下内置过滤器有哪些,分别是干嘛的。
为Zuul提供回退
跟我学Spring Cloud(Finchley版)-16-Zuul 讲过,Zuul整合了Hystrix,而Hystrix提供fallback的能力。
前文已详细讲过通用方式提供fallback、Feign提供fallback。如果不记得如何提供Fallback,可前往如下文章复习。
/**
* @author itmuch.com
*/
@Component
public class MyFallbackProvider implements FallbackProvider {
@Override
public String getRoute() {
// 表明是为哪个微服务提供回退,*表示为所有微服务提供回退
return "*";
}
@Override
public ClientHttpResponse fallbackResponse(String route, Throwable cause) {
if (cause instanceof HystrixTimeoutException) {
return response(HttpStatus.GATEWAY_TIMEOUT);
} else {
return this.fallbackResponse();
}
}
public ClientHttpResponse fallbackResponse() {
return this.response(HttpStatus.INTERNAL_SERVER_ERROR);
}
private ClientHttpResponse response(final HttpStatus status) {
return new ClientHttpResponse() {
@Override
public HttpStatus getStatusCode() throws IOException {
return status;
}
@Override
public int getRawStatusCode() throws IOException {
return status.value();
}
@Override
public String getStatusText() throws IOException {
return status.getReasonPhrase();
}
@Override
public void close() {
}
@Override
public InputStream getBody() throws IOException {
return new ByteArrayInputStream("服务不可用,请稍后再试。".getBytes());
}
@Override
public HttpHeaders getHeaders() {
// headers设定
HttpHeaders headers = new HttpHeaders();
MediaType mt = new MediaType("application", "json", Charset.forName("UTF-8"));
headers.setContentType(mt);
return headers;
}
};
}
}
这样,当Zuul后端服务发生异常时,就会进到该Fallback类,并返回服务不可用,请稍后再试。
。
高可用
详见:Zuul的高可用
实战技巧
- 如何配置Zuul的Hystrix线程池
- Spring Cloud限流详解 ,里面谈到基于Zuul的限流。
其他
虽然是基于Edgware写的,但Finchley版本依然适用。
本文首发
http://www.itmuch.com/spring-cloud/finchley-18/
干货分享
以上是关于跟我学Spring Cloud(Finchley版)-18-Zuul深入的主要内容,如果未能解决你的问题,请参考以下文章
跟我学Spring Cloud(Finchley版)-09-Feign
跟我学Spring Cloud(Finchley版)-07-Ribbon入门
跟我学Spring Cloud(Finchley版)-17-Zuul路由配置详解
跟我学Spring Cloud(Finchley版)-14-Feign使用Hystrix