SpringCloud-路由网关Gateway自定义GatewayFilterFactory

1.概述

上文我们讲述了spring cloud gateway提供了很多内置的过滤器,但有些时候为了满足个性需求场景,我们需要自定义自己的过滤器,这时我们可以通过自定义GatewayFilterFactory来实现。

对于自定义的factory,我们可以选择去实现接口或继承已有的抽象类,相关的接口是GatewayFilterFactory,而springboot默认帮我们实现的抽象类是AbstractGatewayFilterFactory这个类。

2.自定义GatewayFilterFactory

代码示例如下:

package com.faw.btims.gateway.filter;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.faw.btims.gateway.utils.RedisUtil;
import com.faw.btims.gateway.utils.ServletHttpHelper;
import com.faw.comon.constant.CommonConstants;
import com.faw.comon.core.domain.AjaxResult;
import com.faw.comon.exception.ValidateCodeException;
import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.gateway.filter.GatewayFilter;
import org.springframework.cloud.gateway.filter.factory.AbstractGatewayFilterFactory;
import org.springframework.core.io.buffer.DataBuffer;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpRequestDecorator;
import org.springframework.http.server.reactive.ServerHttpResponse;
import org.springframework.stereotype.Component;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

import javax.security.auth.login.LoginException;
import java.net.URI;

/**
 * FileName: LoginFilter
 * Author:   TP
 * Description:登陆前置校验过滤器
 */
@Component
public class LoginCaptchaFilterGatewayFilterFactory extends AbstractGatewayFilterFactory {

    private final static String AUTH_URL = "/auth/login";

    @Autowired
    private RedisUtil redisUtil;

    @Override
    public GatewayFilter apply(Object config) {
        return (exchange, chain) -> {
            ServerHttpRequest serverHttpRequest = exchange.getRequest();
            URI uri = serverHttpRequest.getURI();
            // 不是登录请求,直接向下执行
            if (!StringUtils.containsIgnoreCase(uri.getPath(), AUTH_URL)) {
                return chain.filter(exchange);
            }
            if (HttpMethod.POST.matches(serverHttpRequest.getMethodValue())) {
                String bodyStr = ServletHttpHelper.resolveBodyFromRequest(serverHttpRequest);
                try {
                    JSONObject bodyJson = JSONObject.parseObject(bodyStr);
                    String username = String.valueOf(bodyJson.get("username"));
                    String password = String.valueOf(bodyJson.get("password"));
                    String code = String.valueOf(bodyJson.get("code"));
                    String uuid = String.valueOf(bodyJson.get("uuid"));
                    // 登陆校验
                    loginCheckPre(username, password, code, uuid);
                } catch (Exception e) {
                    ServerHttpResponse response = exchange.getResponse();
                    response.setStatusCode(HttpStatus.OK);
                    response.getHeaders().add("Content-Type", "application/json;charset=UTF-8");
                    AjaxResult ajaxResult = AjaxResult.error(HttpStatus.INTERNAL_SERVER_ERROR.value(), e.getMessage());
                    String msg = JSON.toJSONString(ajaxResult);
                    DataBuffer bodyDataBuffer = response.bufferFactory().wrap(msg.getBytes());
                    return response.writeWith(Mono.just(bodyDataBuffer));
                }
                ServerHttpRequest request = serverHttpRequest.mutate().uri(uri).build();
                DataBuffer bodyDataBuffer = ServletHttpHelper.transferBodyStrToDataBuffer(bodyStr);
                Flux<DataBuffer> bodyFlux = Flux.just(bodyDataBuffer);
                request = new ServerHttpRequestDecorator(request) {
                    @Override
                    public Flux<DataBuffer> getBody() {
                        return bodyFlux;
                    }
                };
                return chain.filter(exchange.mutate().request(request).build());
            }
            return chain.filter(exchange);
        };
    }


    /**
     * 登陆前置检查
     *
     * @param username 用户名
     * @param password 密码
     * @param code     验证码
     * @param uuid     随机数
     * @throws Exception
     */
    private void loginCheckPre(String username, String password, String code, String uuid) throws Exception {
        // 非空
        if (StringUtils.isBlank(username)) {
            throw new LoginException("用户名不能为空");
        }
        if (StringUtils.isBlank(password)) {
            throw new LoginException("密码不能为空");
        }
        if (StringUtils.isBlank(code)) {
            throw new ValidateCodeException("验证码不能为空");
        }
        if (StringUtils.isBlank(uuid)) {
            throw new ValidateCodeException("验证码不合法");
        }
        // 验证码校验
        String verifyKey = CommonConstants.CAPTCHA_CODE_KEY + uuid;
        String saveCode = redisUtil.get(verifyKey);
        redisUtil.delete(verifyKey);
        if (StringUtils.isBlank(saveCode)) {
            throw new ValidateCodeException("验证码已过期");
        }
        if (!code.equalsIgnoreCase(saveCode)) {
            throw new ValidateCodeException("验证码错误");
        }
    }

}

yml中使用自定义过滤器:

spring:
  cloud:
    gateway:
      discovery:
        locator:
          enabled: true # 表明gateway开启服务注册和发现的功能,并且spring cloud gateway自动根据服务发现为每一个服务创建了一个router
          lower-case-service-id: true  # 服务名小写
      # 路由(如果使用动态路由方式,不要在配置文件中配置路由)
      routes:
        # 认证中心
        - id: nevims-app-auth
          uri: lb://nevims-auth-service
          predicates:
            - Path=/nevims/api-auth/**
          filters:
            # 验证码处理
            - StripPrefix=2
            - LoginCaptchaFilter

3.支持yml参数化配置

如果我们想支持在yml文件中给自定义过滤器配置特定参数,我们可以给自定义过滤器指定Config:

package com.faw.btims.gateway.filter;

import com.faw.btims.gateway.utils.RedisUtil;
import lombok.Data;
import org.springframework.cloud.gateway.filter.GatewayFilter;
import org.springframework.cloud.gateway.filter.factory.AbstractGatewayFilterFactory;

import java.util.Arrays;
import java.util.List;

/**
 * FileName: LoginCaptchaFilterGatewayFilterFactory
 * Author:   TP
 * Description:自定义过滤器
 */
public class LoginCaptchaFilterGatewayFilterFactory extends AbstractGatewayFilterFactory<LoginCaptchaFilterGatewayFilterFactory.Config> {

    private RedisUtil redisUtil;
    //重写构造函数,指定Config对象为我们自定义的静态内部类Config
    public LoginCaptchaFilterGatewayFilterFactory(RedisUtil redisUtil) {
        super(Config.class);
        this.redisUtil = redisUtil;
    }

    @Override
    public List<String> shortcutFieldOrder() {
        return Arrays.asList("enabled", "authUrl");
    }

    @Override
    public GatewayFilter apply(Config config) {
        return (exchange, chain) -> {
            System.out.println(config.enabled);
            System.out.println(config.authUrl);
            //TODO 业务处理
            return chain.filter(exchange);
        };
    }

    /**
     * 自定义的config类,用来设置传入的参数
     */
    @Data
    public static class Config {
        // 是否启用
        private boolean enabled;
        // 白名单
        private String authUrl;
    }
}

注册bean:

@Configuration
public class FilterConfig {

    @Autowired
    private RedisUtil redisUtil;

    @Bean
    public LoginCaptchaFilterGatewayFilterFactory helloWorld(){
        return new LoginCaptchaFilterGatewayFilterFactory(redisUtil);
    }
}

yml中配置过滤器并指定参数:

spring:
  cloud:
    gateway:
      discovery:
        locator:
          enabled: true # 表明gateway开启服务注册和发现的功能,并且spring cloud gateway自动根据服务发现为每一个服务创建了一个router
          lower-case-service-id: true  # 服务名小写
      # 路由(如果使用动态路由方式,不要在配置文件中配置路由)
      routes:
        # 认证中心
        - id: nevims-app-auth
          uri: lb://nevims-auth-service
          predicates:
            - Path=/nevims/api-auth/**
          filters:
            # 验证码处理
            - StripPrefix=2
            - name: LoginCaptchaFilter
              args:
                enabled: true
                authUrl: '/auth/login'

访问配置的路由路径后,控制输出:

true
/auth/login

注意:

springboot约定过滤器的前缀为配置的name,而后面最好统一都是GatewayFilterFactory

  • 我们在yml中配置的过滤器名称,如果你的自定义过滤器类名为:XxxGatewayFilterFactory,则名字为Xxx
  • 而如果你的自定义过滤器类名中不以GatewayFilterFactory结尾,例如只为Xxx,则直接写Xxx即可。

但推荐按标准写法:自定义GatewayFilterFactory为:XxxGatewayFilterFactory,
yml中配置name为Xxx

另:如果我们的参数只需要一个,我们可以在yml中配置时直接写成过:滤器名字=参数值即可,例如上面的StripPrefix=2

4.为自定义GatewayFilterFactory设置order

我们通过这种工厂创建出来的过滤器是没有指定order的,会被默认设置为是0,配置在yml文件中,则按照它书写的顺序来执行。

如果想要在代码中设置好它的顺序,工厂的apply方法需要做一些修改,例如:

@Override
public GatewayFilter apply(Config config) {
    return new InnerFilter(config);
}

/**
 * 创建一个内部类,来实现2个接口,指定顺序
 */
private class InnerFilter implements GatewayFilter, Ordered {

    private Config config;

    InnerFilter(Config config) {
        this.config = config;
    }

    @Override
    public Mono<Void> filter(ServerWebExchange exchange, GatewayFilterChain chain) {
        // TODO 业务处理
        // 我们也可以在then方法里的,相当于aop中的后置通知,进行增强(可选操作)
        return chain.filter(exchange).then(Mono.fromRunnable(() -> {
            System.out.println("  post 自定义过滤器工厂: " + this.getClass().getSimpleName());
        }));
    }

    @Override
    public int getOrder() {
        return -100;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351