每天20分钟之spring-cloud-gateway基础二

2022-08-18 23:26:20 浏览数 (1)

spring-cloud-gateway 接入consul转发服务信息

注册consul

代码语言:txt复制
consul:
      discovery:
        service-name: zuul-gateway-static
        health-check-path: /health/status
        prefer-ip-address: true
        ip-address: 127.0.0.1
      host: localhost
      port: 8500

配置consul的转发信息

代码语言:txt复制
- id: lb-info
          uri: lb://consul-server-producer
          predicates:
            - Path=/info/**

访问转发后的地址: http://127.0.0.1:10011/info/1231211

0 人点赞