Spring Cloud Gateway的工作流程
具体的流程:
-
用户发送请求到网关
-
请求断言,用户请求到达网关后,由Gateway Handler Mapping(网关处理器映射)进行Predicates(断言),看一下哪一个符合路由规则,选择对应的过滤器进行处理
spring:cloud:gateway:routes:- id: api_routeuri: http://localhost:8123predicates:- Path=/api/**filters:- 'AddRequestHeader=token,wahahaawahaha'
上面是使用
application.yml
对网关进行路由规则的制定- id: api_route
: 这是路由的标识符。这只是一个名称,可以是任何描述性的名称uri:http//localhost:8123
是表示请求要转发的路径predicates
:断言,比如指定了- Path=/api/**,任何到达网关的请求,如果请求资源定位符是/api/
开头的都会进行匹配- 例如:网关的端口是
8090
,我发送请求http://localhost:8090/api/hello
,那么网关就会将请求转发到http://localhost:8123/api/hello
,但是转发之前会经过filters,例如上面的AddRequestHeader=source,api
,会在请求头加一个<source,api>
-
请求过滤:请求到达Gateway Web Handler,里面有很多Filter(过滤器),多个Filter像一个Chain(链条)一样串起来,符合路由断言的请求会先后经过这些Filter进行处理,在FIlter中可以进行限流、访问控制、参数校验、添加请求头等
-
服务处理:如果请求经过所有FIlter无异常,会将请求转发给真正的后端进行处理
-
响应过滤:后端处理完结果后,返回给Gateway的过滤器再次做处理,逻辑上可以称为 Post-Filters
总结:客户端的请求先通过匹配规则找到合适的路由,就能映射到具体的服务。然后请求经过过滤器处理后转发给具体的服务,服务处理后,再次经过过滤器处理,最后返回给客户端。
常见路由断言规则
自定义过滤器
如果要定义的过滤器比较复杂,可以使用自定义过滤器
@Component
public class CustomGlobalFilter implements GlobalFilter, Ordered {@Overridepublic Mono<Void> filter(ServerWebExchange exchange, GatewayFilterChain chain) {// 1. 获取请求头ServerHttpRequest request = exchange.getRequest();String path = INTERFACE_HOST + request.getPath().value();String method = request.getMethod().toString();log.info("请求唯一标识:" + request.getId());log.info("请求路径:" + path);log.info("请求方法:" + method);log.info("请求参数:" + request.getQueryParams());String sourceAddress = request.getLocalAddress().getHostString();log.info("请求来源地址:" + sourceAddress);log.info("请求来源地址:" + request.getRemoteAddress());ServerHttpResponse response = exchange.getResponse();// 2. 访问控制 - 黑白名单if (!IP_WHITE_LIST.contains(sourceAddress)) {response.setStatusCode(HttpStatus.FORBIDDEN);return response.setComplete();}// 3. 用户鉴权return chain.filter(exchange);}// 设置order调用顺序@Overridepublic int getOrder() {return -1;}public Mono<Void> handleNoAuth(ServerHttpResponse response) {response.setStatusCode(HttpStatus.FORBIDDEN);return response.setComplete();}public Mono<Void> handleInvokeError(ServerHttpResponse response) {response.setStatusCode(HttpStatus.INTERNAL_SERVER_ERROR);return response.setComplete();}
}
其实学习SpringCloud Gateway就是进行一些配置,没有什么资料比官方更丰富,所以强烈建议去看官方文档:官方文档