Spring Cloud Gateway服务发现的路由规则实战

一 代码位置

https://github.com/cakin24/spring-cloud-code/tree/master/ch18-1

二 测试

1 启动ch18-1-eureka

2 启动ch18-1-consumer

3 启动ch18-1-provider

4 ch18-1-gateway配置如下,然后启动

spring:
  application:
    name: sc-gateway-server
  cloud:
    gateway:
      discovery:
        locator:
          enabled: true
          # 开启小写的serviceId进行基于服务的路由的转发
          lowerCaseServiceId: true


server:
  port: 9000  #网关服务监听 9000 端口
eureka:
  client:
    service-url: #指定注册中心的地址,以便使用服务发现功能
      defaultZone: http://localhost:8761/eureka/


logging:
  level: #调整相关包的 log 级别,以便排查问题
    org.springframework.cloud.gateway: debug

5 浏览器输入: http://localhost:9000/sc-consumer/hello/zhangsan

Spring Cloud Gateway服务发现的路由规则实战_第1张图片

6 ch18-1-gateway配置如下,然后启动

spring:
  application:
    name: sc-gateway-server
  cloud:
    gateway:
      discovery:
        locator:
          enabled: true
          # 关闭小写的serviceId进行基于服务的路由的转发
          lowerCaseServiceId: false


server:
  port: 9000  #网关服务监听 9000 端口
eureka:
  client:
    service-url: #指定注册中心的地址,以便使用服务发现功能
      defaultZone: http://localhost:8761/eureka/




logging:
  level: #调整相关包的 log 级别,以便排查问题
    org.springframework.cloud.gateway: debug

7 浏览器输入: http://localhost:9000/SC-CONSUMER/hello/zhangsan

Spring Cloud Gateway服务发现的路由规则实战_第2张图片

你可能感兴趣的:(微服务,Spring,Cloud)