Spring Cloud Gateway 入门案例

前言


本文主要讲解实现Spring Cloud Gateway路由转发功能

概念


什么是Spring Cloud Gateway?

  Spring Cloud Gateway是Spring官方基于Spring 5.0,Spring Boot 2.0和Project Reactor等技术开发的网关,Spring Cloud Gateway
旨在为微服务架构提供一种简单而有效的统一的API路由管理方式。Spring Cloud Gateway作为Spring Cloud生态系中的网关,目标是替代Netflix
ZUUL,其不仅提供统一的路由方式,并且基于Filter链的方式提供了网关基本的功能,例如:安全,监控/埋点,和限流等
复制代码

案例


实现路由转发功能

1、新建springBoot项目
依赖包引入:服务注册包nacos、服务调用包Feign、Gateway包

"1.0" encoding="UTF-8"?>
"http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.1.RELEASE
         
    
    com.miniwan
    gateway
    0.0.1-SNAPSHOT
    gateway
    Demo project for Spring Boot

    
        1.8
        Finchley.SR2
    

    
        
            org.springframework.cloud
            spring-cloud-starter-gateway
        
        
            org.springframework.cloud
            spring-cloud-starter-openfeign
        

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

        
            org.springframework.cloud
            spring-cloud-starter-alibaba-nacos-discovery
        
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                <type>pomtype>
                import
            
            
                org.springframework.cloud
                spring-cloud-alibaba-dependencies
                0.2.1.RELEASE
                <type>pomtype>
                import
            
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

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


复制代码

2、将网关服务注册到nacos
a、编写application.yml文件,配置服务注册中心地址

server:
  port: 9001
spring:
  application:
    name: service-agateway
  cloud:
    nacos:
      discovery:
        server-addr: 127.0.0.1:8848
复制代码

b、主程序客户端标记@EnableDiscoveryClient

@EnableDiscoveryClient
@SpringBootApplication
public class AgatewayApplication {

    public static void main(String[] args) {
        SpringApplication.run(AgatewayApplication.class, args);
    }

}
复制代码

3、实现路由转发
a、application.yml开启网关功能并配置路由转发

server:
  port: 9001
spring:
  application:
    name: service-agateway
  cloud:
    nacos:
      discovery:
        server-addr: 127.0.0.1:8848
    #将此服务设置为网关
    gateway:
      discovery:
        locator:
          enabled: true
      routes:
      #路由名称
      - id: consumer_route
      #跳转路由
        uri: http://www.scnunanshen.online/
      #断言,设置拦截条件,
        predicates:
        - Path=/discovery

#注意事项一
#上面-Path=/discovery 设置方法生效路由只有http://localhost:9001/discovery
#http://localhost:9001/discovery/xxx...   不能被拦截
#http://localhost:9001/service-consumer/discovery 不能被拦截
#当然也可以将路由设置为-Path=/discovery/**,此时http://localhost:9001/discovery/xxx...也能被拦截

#注意事项二
#此处spring.cloud.gateway.locator.enabled需要设置为true 网关转发功能才能生效
复制代码

上面设置:http://localhost:9001/discovery跳转到http://www.scnunanshen.online/

转载于:https://juejin.im/post/5c8752b75188257ea64cf2c1

你可能感兴趣的:(Spring Cloud Gateway 入门案例)