Spring Cloud Gateway实现微服务网关

Spring Cloud Gateway实现微服务网关

原文在github,有些相对路径连接不能跳转,如想看原文项目地址 spingboot2.1.3加springcloud G版本,如果觉的不错给个star 谢谢!

Spring Cloud Gateway简介

该项目提供了一个建立在Spring Ecosystem之上的API网关,包括:Spring 5,Spring Boot 2和Project Reactor。Spring Cloud Gateway旨在提供一种简单而有效的方式来路由到API,
并为他们提供横切关注点,例如:安全性,监控/指标和弹性。

架构图

gateway_diagram.png

客户端向Spring Cloud Gateway发出请求。如果网关处理程序映射确定请求与路由匹配,则将其发送到网关Web处理程序。此处理程序运行通过特定于请求的过滤器链发送请求。
滤波器被虚线划分的原因是滤波器可以在发送代理请求之前或之后执行逻辑。执行所有“预”过滤器逻辑,然后进行代理请求。在发出代理请求之后,执行“post”过滤器逻辑。

前期准备工作

  • 启动spring-cloud-eureka
  • 启动spring-cloud-clientA
  • 启动spring-cloud-clientB

gateway服务搭建

  • maven依赖

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

  • application.properties配置
server.port=8007
spring.application.name=spring-cloud-gateway
spring.cloud.gateway.discovery.locator.enabled=true
spring.cloud.gateway.discovery.locator.lower-case-service-id=true

eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/
  • 启动类案例
@EnableEurekaClient
@SpringBootApplication
public class SpringCloudGatewayApplication {

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

}

启动项目spring-cloud-gateway

访问 http://localhost:8007/eureka-client-a/hello/zwd ,可以从服务a控制台看到调用成功。
访问 http://localhost:8007/eureka-client-b/hello/zwd ,可以从服务b控制台看到调用成功。

你可能感兴趣的:(Spring Cloud Gateway实现微服务网关)