Skip to main content
Version: 2.4.0

自定义条件参数

本文介绍如何对 org.apache.shenyu.plugin.base.condition.data.ParameterData 进行自定义扩展。

  • 新增一个类 CustomParameterData,实现 org.apache.shenyu.plugin.base.condition.data.ParameterData 接口 ,添加注解org.apache.shenyu.spi.Join
/** * This is custom parameter data. */@Joinpublic class CustomParameterData implements ParameterData {        @Override    public String builder(final String paramName, final ServerWebExchange exchange) {        // 自定义条件参数    }}
  • org.apache.shenyu.plugin.base.condition.data.ParameterData 文件中添加如下内容:
script
${spi name}=${custom class path}

${spi name}表示spi的名称,${custom class path}表示该类的全限定名。比如:

script
custom=org.apache.shenyu.examples.http.condition.data.CustomParameterData
  • org.apache.shenyu.common.enums.ParamTypeEnum 类中添加枚举类型:
    /**     * custom param type enum.     */    CUSTOM("custom", true),
  • Apache ShenYu网关管理系统 --> 基础配置 --> 字典管理, 找到字典编码为 PARAM_TYPE,新增一条数据,注意字典名称要为: ${spi name},图中的示例是custom

字典类型:paramType

字典编码:PARAM_TYPE

字典名称:${spi name},填写自定义spi的名称;

字典值:使用时,下拉框的值,不要和现有的重复;

字典描述或备注信息:描述信息;

排序: 排序;

状态:打开或关闭。

  • 在添加选择器或规则时,就可以使用自定义的条件参数: