由于Drools提供扩展规则的工具,我需要扩展决策表。
实际上我有一套需要重复使用的主规则和主决策表。 Drools提供了扩展规则的功能,但我不知道决策表。此功能的目的是我们需要重用规则和DTA,以及易于维护的单一副本。
有些人可以帮我,并提供实现相同功能的步骤。
rule "Base"
when
eval(true)
then
System.out.println("Base will fire if Object.condition1 evaluates to true");
end
rule "ExtensionOfBase" extends "Base"
when
eval(true)
then
System.out.println("Base will fire if Object.condition1 and Object.condition2 evaluates to true");
end