详解Spring Cloud Gateway基于服务发现的默认路由规则
1.spring gateway概述
1.1 什么是spring cloud gateway
spring cloud gateway
是spring官方基于spring 5.0,spring boot 2.0和project reactor等技术开发的网关,spring cloud gateway旨在为微服务架构提供一种简单而有效的统一的api路由管理方式。spring cloud gateway作为spring cloud生态系中的网关,目标是替代netflix zuul,其不仅提供统一的路由方式,并且基于filter链的方式提供了网关基本的功能,例如:安全,监控/埋点,和限流等。
1.2 spring cloud gateway的功能
spring cloud gateway 的特征:
- 基于 spring framework 5,project reactor 和 spring boot 2.0
- 动态路由
- predicates 和 filters 作用于特定路由
- 集成 hystrix 断路器
- 集成 spring cloud discoveryclient
- 易于编写的 predicates 和 filters
- 限流
- 路径重写
2. spring cloud gateway的工程流程
客户端向 spring cloud gateway 发出请求。然后在 gateway handler mapping 中找到与请求相匹配的路由,将其发送到 gateway web handler。handler 再通过指定的过滤器链来将请求发送到我们实际的服务执行业务逻辑,然后返回。
过滤器之间用虚线分开是因为过滤器可能会在发送代理请求之前(“pre”)或之后(“post”)执行业务逻辑。
2.1 pre和post两种类型的过滤器
3.基于服务发现的默认路由规则
3.1 zuul和gateway的默认路由规则
3.1.1 zuul的默认路由规则
说明默认情况下,zuul会代理所有注册到eureka server的微服务,并且zuul的路由规则如下:
http://zuul_host:zuul_port/微服务在eureka上的serviceid/** 会被转发到serviceid对应的微服务。
http://localhost:8040/sc-zuul-first-provider/sc/order/2
3.1.2 gateway的默认路由规则
规则:http://gateway_host:gateway_port/大写的serviceid/**
其中微服务应用名默认大写访问。
实例代码:
模块 | 说明 | 端口 |
---|---|---|
eureka-service | eureka server注册中心 | 5000 |
gateway-service | spring cloud gateway sever | 5001 |
order-service | 服务提供者 | 5100 |
user-service | 服务消费者 | 5200 |
分别新建上面这四个服务,详见 spring cloud finchley环境搭建
其中gateway-service服务的application.yml配置文件如下:
spring: application: name: gateway-service cloud: # spring cloud gateway 路由配置方式 gateway: discovery: #是否与服务发现组件进行结合,通过 serviceid(必须设置成大写) 转发到具体的服务实例。默认为false,设为true便开启通过服务中心的自动根据 serviceid 创建路由的功能。 locator: #路由访问方式:http://gateway_host:gateway_port/大写的serviceid/**,其中微服务应用名默认大写访问。 enabled: true routes: - id: 163 #网关路由到网易官网 uri: http://www.163.com/ predicates: - path=/163/** # - id: order-service #网关路由到订单服务order-service # uri: lb://order-service # predicates: # - path=/order-service/** # - id: user-service #网关路由到用户服务user-service # uri: lb://user-service # predicates: # - pach=/user-service/** server: port: 5001 logging: level: org.springframework.cloud.gateway: trace org.springframework.http.server.reactive: debug org.springframework.web.reactive: debug reactor.ipc.netty: debug eureka: client: service-url: defaultzone: http://localhost:5000/eureka/ feign: hystrix: enabled: true
配置项说明:
spring.cloud.gateway.discovery.locator.enabled:是否与服务发现组件进行结合,通过 serviceid 转发到具体的服务实例。默认为false,设为true便开启通过服务中心的自动根据 serviceid 创建路由的功能。
eureka.client.service-url.defaultzone: http://localhost:5000/eureka/,指定注册中心的地址,spring cloud gateway从注册中心获取已经注册的服务列表。
logging.level.org.springframework.cloud.gateway: debug,开启spring-cloud-gateway的日志级别为debug,方便debug调试。
3.3 启动测试
3.3.1 错误的路由规则访问
访问spring cloud gateway对应的server,当访问http://localhost:5000/order-service/order/getorderport的时候,会出现报错内容如下所示:
正确的spring cloud gateway的默认路由规则:http://gateway_host:gateway_port/大写的serviceid/**
3.3.2 gateway正确的路由规则测试
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。