011-spring cloud gateway-使用

一、pom增加

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-webflux</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-gateway</artifactId>
        </dependency>

二、使用

启动类无需任何设置,设置配置文件

spring:
  application:
    name: gateway-service
  cloud:
    gateway:
#      discovery:      #方式一、是否与服务发现组件进行结合,通过 serviceId(必须设置成大写) 转发到具体的服务实例。默认为false,设为true便开启通过服务中心的自动根据 serviceId 创建路由的功能。
#        locator:      #路由访问方式:http://Gateway_HOST:Gateway_PORT/大写的serviceId/**,其中微服务应用名默认大写访问。
#          enabled: true
#      routes:  #方式二 使用lb负载均衡加载
#      - id: USERSERVICE
#        uri: lb://USER-SERVICE:8762
#        predicates:
#          - Path=/userapi/**
#        filters:
#          - StripPrefix=1
      routes:  #方式三 直接使用 域名地址
      - id: USERSERVICE
        uri: http://localhost:8762
        predicates:
          - Path=/userapi/**
        filters:
          - StripPrefix=1

参考代码:https://github.com/bjlhx15/spring-cloud-base/tree/master/spring-cloud-sleuth-study

猜你喜欢

转载自www.cnblogs.com/bjlhx/p/9790836.html