以Drools扩展决策表

时间:2016-06-04 07:40:03

标签: drools

由于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

0 个答案:

没有答案