6000 字 | 16 图 | 深入理解 Spring Cloud Gateway 的原理
前言在PassJava项目中,我用到了SpringCloudGateway作为API网关,客户端的所有的请求都是先经过网关,然后再转发到会员微服务、题目微服务等。比如API网关和会员微服务对应的访问地址如下:API网关地址:http:localhost:8060会员微服务地址:http:localhost:14000客户端请求都是访问的API网关,然后网关转发到会员微服务,客户端无需知道会员微服务的地址。本篇将会以PassJava作为案例进行讲解。PassJava开源地址:https:github...