spring cloud gateway简单构件

gateway网关用来分配路由,实现负载均衡

启动gateway

创建一个简单的springboot2.x项目,这里不做介绍

gateway pom.xml

 



    4.0.0

    com.example
    demo
    0.0.1-SNAPSHOT
    jar

    demo
    Demo project for Spring Boot

    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.3.RELEASE
         
    

    
        UTF-8
        UTF-8
        1.8
        Finchley.RELEASE
    

    

        
        
            org.springframework.boot
            spring-boot-starter-webflux
        
        
            org.springframework.cloud
            spring-cloud-starter-gateway
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix
        

        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        

        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        


        
            com.alibaba
            fastjson
            1.2.31
        
        
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
            
                org.apache.maven.plugins
                maven-surefire-plugin
                
                    true
                
            
        
    

    
        
            spring-milestones
            Spring Milestones
            https://repo.spring.io/milestone
            
                false
            
        
    



使用eureka注册中心,和几个简单的服务,这里不再赘述。自己照着博客搭一个就可以,大概就是一个

eureka-server server-hi server-gateway 三个即可  
启动eureka-server 端口号为 8761  如果没有可以借用http://eureka.didispace.com/这个的eureka
server-hi可以没有  
在gateway的aplication.yml文件中
spring:
  application:
    name: service-gateway
  cloud:        # spring cloud gateway 路由配置方式
    gateway:
      discovery:      #是否与服务发现组件进行结合,通过 serviceId(必须设置成大写) 转发到具体的服务实例。默认为false,设为true便开启通过服务中心的自动根据 serviceId 创建路由的功能。
        locator:      #路由访问方式:http://Gateway_HOST:Gateway_PORT/大写的serviceId/**,其中微服务应用名默认大写访问。
          enabled: true
      routes:
      - id: SERVICE-HI                     #网关路由到eureka
        uri: lb://SERVICE-HI               # http也可以   LoadBalancerClient过滤器  这里写啥就会跳到啥页面
        predicates:
          - Path=/SERVICE-HI/**            #路径   websocket长连接可以在lb后使用ws  lb: ws://serviceid
      #          - Weight=provide, 90             # 权重 可以不加
        filter:
          - RedirectTo=404, http://zhihu.com
      - id: baidu                     #网关路由到eureka
        uri: http:www.baidu.com           # http也可以   LoadBalancerClient过滤器
        predicates:
          - Path=/baidu/**            #路径   websocket长连接可以在lb后使用ws  lb: ws://serviceid
      #          - Weight=provide, 90             # 权重 可以不加
#      - id: baidu
#        uri: http://baidu.com              # lb 不可以
#        method: GET                        # 请求方法
#        predicates:
#           - Path=/*
#        filter:
#        - RedirectTo=302, http://zhihu.com


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:8761/eureka/
    register-with-eureka: true
    fetch-registry: true

feign:
  hystrix:
    enabled: true
  okhttp:
    enabled: true #开启OKHTTP支持,依赖 (feign-okhttp)默认HttpClient
server:
  port: 8801
management:
  endpoints:
    web:
      exposure:
        include: "*"

现在启动就可以了,访问localhost:8801/baidu  路由就会跳到百度了,但是 path里的baidu这个会跟在www.baidu.com后面  影响我们使用 这是使用 filters: - StripPrefix=1 截取掉path里的第一个单词,这样我们就能够跳转至百度的首页了。这里就实现了一个简单的gateway

 

附上github地址 可以down下来跑

https://github.com/p555iii/springCloudStudy

你可能感兴趣的:(java,spring,cloud,gateway)