自定义条件策略
- 本文介绍如何对 进行自定义扩展。
- 条件谓语是选择器中连接数据和规则的桥梁,作用是筛选出符合条件的请求。
- 目前已经存在包括 match, =, regex, contains, TimeBefore, TimeAfter, exclude 共七个条件谓语。
- 用户可以参考 模块,新增自己的条件谓语,如果有好的公用插件,可以向官网提交
pr
。
- 新建一个工程,引入如下依赖:
- 新增类
CustomPredicateJudge
,实现org.apache.shenyu.plugin.base.condition.judge.PredicateJudge
接口,添加注解org.apache.shenyu.spi.Join
。
/**
* custom predicate judge.
*/
@Join
@Override
public Boolean judge(final ConditionData conditionData, final String realData) {
// 自定义条件策略
}
- 在工程的META-INF/services目录创建
org.apache.shenyu.plugin.base.condition.judge.PredicateJudge
文件,并添加如下内容:
custom=xxx.xxx.xxx.CustomPredicateJudge
将工程打包,拷贝到网关 (bootstrap-bin) 的
lib
或ext-lib
目录。在
Apache ShenYu
网关管理系统 —> 基础配置 —> 字典管理, 找到字典编码为OPERATOR
,新增一条数据,注意字典名称要为:${spi name}
,图中的示例是custom
。
- 在添加选择器或规则时,就可以使用自定义的条件策略:
- 添加 和
SpELPredicateJudge
扩展。
* SpEL predicate judge.
*/
@Join
public class SpELPredicateJudge implements PredicateJudge {
private static final ExpressionParser EXPRESSION_PARSER = new SpelExpressionParser();
@Override
public Boolean judge(final ConditionData conditionData, final String realData) {
Expression expression = EXPRESSION_PARSER.parseExpression(conditionData.getParamValue().replace('#' + conditionData.getParamName(), realData));
return expression.getValue(Boolean.class);
}
}