SpringCloud(1-6)服务路由 zuul

Posted 非淡泊无以明志,非宁静无以致远 - 长安快马

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringCloud(1-6)服务路由 zuul相关的知识,希望对你有一定的参考价值。

Zuul的主要功能是路由和过滤器。路由功能是微服务的一部分,比如/api/user映射到user服务,/api/shop映射到shop服务。zuul实现了负载均衡。

zuul有以下功能:

  • Authentication
  • Insights
  • Stress Testing
  • Canary Testing
  • Dynamic Routing
  • Service Migration
  • Load Shedding
  • Security
  • Static Response handling
  • Active/Active traffic management

filterType:返回一个字符串代表过滤器的类型,在zuul中定义了四种不同生命周期的过滤器类型,具体如下:

  • pre:路由之前
  • routing:路由之时
  • post: 路由之后
  • error:发送错误调用

其他概念:

  • filterOrder:过滤的顺序
  • shouldFilter:这里可以写逻辑判断,是否要过滤,本文true,永远过滤。
  • run:过滤器的具体逻辑。可用很复杂,包括查sql,nosql去判断该请求到底有没有权限访问。

1、pom.xml

2、application.yml

3、app

4、filter

5、运行验证

http://localhost:8401/app-a/HelloA?name=liangshengqi&token=xxxx

发现:已经使用了网关的ip,使用了spring.application.name使用了映射的app-a,  访问路径HelloA?name=liangshengqi&token=xxxx和原来一样

以上是关于SpringCloud(1-6)服务路由 zuul的主要内容,如果未能解决你的问题,请参考以下文章

SpringCloud系列八:Zuul 路由访问(Zuul 的基本使用Zuul 路由功能zuul 过滤访问Zuul 服务降级)

SpringCloud系列八:Zuul 路由访问(Zuul 的基本使用Zuul 路由功能zuul 过滤访问Zuul 服务降级)

SpringCloud-路由网关(Zuul)

springcloud06(zuul网关)

springCloud学习- 路由网关(zuul)

springCloud(14):使用Zuul构建微服务网关-路由端点与路由配置详解