2011-06-22 91 views
0

當前試圖證明使用逗號分隔的輸入參數的數據庫驅動的規則模板。我們試圖重用似乎不適用於規則模板的所有決策表結構。Drools規則模板和所有決策表構造

E.g.

<code> 
template header 
myCommaSeparated 

package test.package; 

template "Test Rule" 
rule "@{row.rowNumber}" 

    when 
     forall(||){@{myCommaSeparated}} 
    then   

end 
end template 
</code> 

這是行不通的。根據文檔規則模板應該能夠做一切決策表可以做的事情?

回答