spring-gateway-通过服务名称访问微服务

spring-gateway-通过服务名称访问微服务

工程目录

  • cloud-eureka-server: 注册中心
  • foundation-consumer: 消费者
  • foundation-gateway-server: 网关

cloud-eureka-server

applicatioin.yml :

spring:
  application:
    name: eureka-server
server:
  port: 8761
eureka:
  instance:
    hostname: localhost
  client:
    service-url:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
    fetch-registry: false
    register-with-eureka: false

foundation-consumer

application.yml :

spring:
  application:
    name: foundation-consumer

server:
  port: 8080

eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka
    fetch-registry: true
    register-with-eureka: true

controller :

@RestController
public class HelloController {


    @GetMapping("/echo/{name}")
    public String echo(@PathVariable("name") String name){
        return "hello: ".concat(name);
    }
}

foundation-gateway-server

application.yml:

spring:
  application:
    name: foundation-gateway-server
  cloud:
    gateway:
      routes:
        - id: rt_consumer
          uri: lb://foundation-consumer
          predicates:
            - Path=/h5/sc/**
          filters:
            # 不需要拼接 /h5/sc
            - StripPrefix=2
      discovery:
        # locator需要打开,不然通过 lb://.. 方式请求不到
        locator:
          enabled: true
          lower-case-service-id: true

server:
  port: 9090

eureka:
  instance:
    hostname: localhost
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/
     # 这个不能是false, 需要向注册中心拉取服务信息
    fetch-registry: true

访问服务

现在可以访问:

http://localhost:9090/foundation-gateway-server/h5/sc/echo/tom
在这里插入图片描述

或者:

http://localhost:9090/h5/sc/echo/tom
在这里插入图片描述

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值