跟我学SpringCloud | 第十三篇:Spring Cloud Gateway服务化和过滤器
springcloud系列教程 | 第十三篇:spring cloud gateway服务化和过滤器
springboot: 2.1.6.release
springcloud: greenwich.sr1
如无特殊说明,本系列教程全采用以上版本
上一篇文章服务网关 spring cloud gateway 初级篇,介绍了 spring cloud gateway 的相关术语、技术原理,以及如何快速使用 spring cloud gateway。这篇文章我们继续学习 spring cloud gateway 的高级使用方式,比如如何配置服务中心来使用,如何使用熔断、限流等高级功能。
1. 注册中心
1.1 准备服务和注册中心
上篇主要讲解了网关代理单个服务的使用语法,在实际的工作中,服务的相互调用都是依赖于服务中心提供的入口来使用,服务中心往往注册了很多服务,如果每个服务都需要单独配置的话,这将是一份很枯燥的工作。spring cloud gateway 提供了一种默认转发的能力,只要将 spring cloud gateway 注册到服务中心,spring cloud gateway 默认就会代理服务中心的所有服务,下面用代码演示。
在介绍zuul的时候,我们用到了eureka和producer,本次演示还是需要他们两个,将他们两个cv过来。
1.2 服务网关注册到注册中心
上一篇用到的gateway也cv过来,在依赖文件里面加入:
<dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-starter-netflix-eureka-client</artifactid> </dependency>
添加对eureka的依赖,在启动文件加入注解@enableeurekaclient。
修改配置文件application.yml:
server: port: 8080 spring: application: name: api-gateway cloud: gateway: discovery: locator: enabled: true eureka: client: service-url: defaultzone: http://localhost:8761/eureka/ logging: level: org.springframework.cloud.gateway: debug
配置说明:
- spring.cloud.gateway.discovery.locator.enabled:是否与服务注册于发现组件进行结合,通过 serviceid 转发到具体的服务实例。默认为 false,设为 true 便开启通过服务中心的自动根据 serviceid 创建路由的功能。
- eureka.client.service-url.defaultzone指定注册中心的地址,以便使用服务发现功能
- logging.level.org.springframework.cloud.gateway 调整相 gateway 包的 log 级别,以便排查问题
修改完成后启动 gateway 项目,访问注册中心地址 http://localhost:8761/ 即可看到名为 api-gateway的服务。
1.3 测试
将 gateway 注册到服务中心之后,网关会自动代理所有的在注册中心的服务,访问这些服务的语法为:
http://网关地址:端口/服务中心注册 serviceid/具体的url
比如我们的 producer 项目有一个 /hello 的服务,访问此服务的时候会返回:"hello "+name+",producer is ready"。
比如访问地址:http://localhost:8081/hello?name=spring,页面返回:hello spring,producer is ready。
按照上面的语法我们通过网关来访问,浏览器输入:http://localhost:8080/spring-cloud-producer/hello?name=spring 同样返回:hello spring,producer is ready。证明服务网关转发成功。
我们将项目 producer 复制一份为 producer1,将/hello服务的返回值修改为 hello spring,producer1 is ready。修改端口号为 8082 ,修完完成后重启,这时候访问注册中心后台会发现有两个名为 spring-cloud-producer的服务。
在浏览器多次访问地址:http://localhost:8888/spring-cloud-producer/hello,页面交替返回以下信息:
hello spring,producer is ready。 hello spring,producer1 is ready。
说明后端服务自动进行了均衡负载。
2. 基于 filter(过滤器) 实现的高级功能
在zuul高级篇中大概介绍过 filter 的概念。
spring cloud gateway 的 filter 的生命周期不像 zuul 的那么丰富,它只有两个:“pre” 和 “post”。
- pre: 这种过滤器在请求被路由之前调用。我们可利用这种过滤器实现身份验证、在集群中选择请求的微服务、记录调试信息等。
- post:这种过滤器在路由到微服务以后执行。这种过滤器可用来为响应添加标准的 http header、收集统计信息和指标、将响应从微服务发送给客户端等。
spring cloud gateway 的 filter 分为两种:gatewayfilter 与 globalfilter。globalfilter 会应用到所有的路由上,而 gatewayfilter 将应用到单个路由或者一个分组的路由上。
spring cloud gateway 内置了9种 globalfilter,比如 netty routing filter、loadbalancerclient filter、websocket routing filter 等,根据名字即可猜测出这些 filter 的作者,具体大家可以参考官网内容:global filters
利用 gatewayfilter 可以修改请求的 http 的请求或者响应,或者根据请求或者响应做一些特殊的限制。 更多时候我们会利用 gatewayfilter 做一些具体的路由配置,下面我们做一些简单的介绍。
2.1 快速上手 filter 使用
我们以 addrequestparameter gatewayfilter 来演示一下,如何在项目中使用 gatewayfilter,addrequestparameter gatewayfilter 可以在请求中添加指定参数。
2.1.1 配置application.yml示例
server: port: 8080 spring: application: name: api-gateway cloud: gateway: discovery: locator: enabled: true routes: - id: add_request_parameter_route uri: http://localhost:8081 filters: - addrequestparameter=foo, bar predicates: - method=get eureka: client: service-url: defaultzone: http://localhost:8761/eureka/ logging: level: org.springframework.cloud.gateway: debug
这里的 routes 手动指定了服务的转发地址,设置所有的 get 方法都会自动添加foo=bar,http://localhost:8081 是 producer 项目,我们在此项目中添加一个 foo() 方法,用来接收转发中添加的参数 foo。
@requestmapping("/foo") public string foo(string foo) { return "hello "+foo+"!"; }
修改完成后重启 gateway、producer 项目。访问地址 http://localhost:8081/foo 页面返回:hello null!,说明并没有接受到参数 foo;通过网关来调用此服务,浏览器访问地址 http://localhost:8080/foo 页面返回:hello bar!,说明成功接收到参数 foo 参数的值 bar ,证明网关在转发的过程中已经通过 filter 添加了设置的参数和值。
2.2 服务化路由转发
面我们使用 uri 指定了一个服务转发地址,单个服务这样使用问题不大,但是我们在注册中心往往会使用多个服务来共同支撑整个服务的使用,这个时候我们就期望可以将 filter 作用到每个应用的实例上,spring cloud gateway 工了这样的功能,只需要简单配置即可。
为了测试两个服务提供者是否都被调用,我们在 producer1 项目中也同样添加 foo() 方法。
@requestmapping("/foo") public string foo(string foo) { return "hello "+foo+"!@@@@"; }
为了和 producer 中 foo() 方法有所区别,这里使用了多加了4个@。同时将 gateway 项目配置文件中的 uri 内容修改如下:
#格式为:lb://应用注册服务名 uri: lb://spring-cloud-producer
修改完之后,重新启动项目 gateway、producer1,浏览器访问地址: http://localhost:8080/foo 页面交替出现:
hello bar! hello bar!@@@@
证明请求依据均匀转发到后端服务,并且后端服务均接收到了 filter 增加的参数 foo 值。
这里其实默认使用了全局过滤器 loadbalancerclient ,当路由配置中 uri 所用的协议为 lb 时(以uri: lb://spring-cloud-producer为例),gateway 将使用 loadbalancerclient 把 producer 通过 eureka 解析为实际的主机和端口,并进行负载均衡。
推荐阅读
-
鹿胎膏怎么吃,鹿胎膏有哪些功能和效果!
-
买买乐购立足消费场景建设 丰富品质消费服务平台体系
-
乐外卖与快服务战略合作,共同打造“外卖+跑腿”平台新模式
-
Android获取本地相册图片和拍照获取图片的实现方法
-
Wing FTP Server FTP服务器端中文版安装使用教程
-
eclipse格式化代码快捷键无法使用怎么办?
-
JS温故而知新之变量提升和时间死区
-
Wing FTP Server(FTP服务器管理软件)英文版使用方法(操作步骤)
-
暴风影音快进和快退时间在哪里调?
-
Windows 64 位 mysql 5.7以上版本包解压中没有data目录和my-default.ini及服务无法启动的快速解决办法(问题小结)