gpt4 book ai didi

基于 Java 的带回退的简单规则引擎

转载 作者:行者123 更新时间:2023-12-04 08:52:57 37 4
gpt4 key购买 nike

我需要实现一个具有分层回退支持的简单规则引擎。我已经研究过 DROOLS 库,但我不确定它是否支持我的用例。
用例相当简单,这让我思考是否需要规则引擎?尽管如此,这是用例-
我有一个带有一堆字段的模态

Public Class Entity {
public int val0;
public int val1;
public int val2;
public int val3;
.....
}
现在,我想针对这些字段创建规则如下
RULE1 --- IF val0 == 1 && val1 == 1 && val2 == 1 && val3 == 1 --- (1,1,1,1) THEN DO this
RULE2 --- IF val0 == 1 && val1 == 1 && val2 == 1 && val3 == 2, --- (1,1,1,2) THEN DO this
RULE3 --- IF val0 == 1 && val1 == 1 && val2 == 1 && val3 == *, --- (1,1,1,*) THEN DO this
RULE4 --- IF val0 == 1 && val1 == 1 && val2 == * && val3 == *, --- (1,1,*,*) THEN DO this
问题出在 RULE3RULE4其中 val2 和 val3 可以匹配任何值。
例如
val0=1, val1=1, val2=1, val3=1 -- should execute RULE1 - specific match
val0=1, val1=1, val2=1, val3=3 -- should execute RULE3 - generic match as there's no specific match for val3
val0=1, val1=1, val2=10, val3=5 -- should execute RULE4 - generic match as there's no specific match for val2 and val3
因此,根据查询,要么我会找到匹配的规则,要么我将不得不回退到更通用的规则。是否有任何现有的规则引擎库提供此功能,或者我什至需要一个规则引擎库来实现此功能?

最佳答案

起初我以为您可能想要考虑使用按位逻辑,但是由于某些字段采用非二进制值,这可能对您不起作用。
但是,解决方案不必那么复杂。只需创建一个类作为 Entity 的值的匹配器。并使用一系列 if-else 语句来查找匹配项。

class EntityMatcher {

private Integer val0, val1, val2, val3;

/** Constructor used to match all the parameters */
EntityMatcher(int val0, int val1, int val2, int val3) {
// set fields 0-3
}

/** Constructor used when you don't care about val2 & val3 */
EntityMatcher(int val0, int val1) {
// set fields 0 & 1, leaving val2 and val3 as null
}

boolean matches(Entity toMatchAgainst) {
return (this.val0 == null || this.val0 == toMatchAgainst.val0)
&& (this.val1 == null || this.val1 == toMatchAgainst.val1)
...
&& (this.valN == null || this.valN == toMatchAgainst.valN);
}

}
那么你的规则引擎可能看起来像这样:
if (new EntityMatcher(1, 1, 1, 1).matches(entity))
// Rule 1
else if (new EntityMatcher(1, 1, 1, 2).matches(entity))
// Rule 2
...
else if (new EntityMatcher(1, 1).matches(entity))
// Rule 4
...
else
// no match
这与 case classes in Scala 的想法基本相同.

关于基于 Java 的带回退的简单规则引擎,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64000201/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com