Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
657 views
in Technique[技术] by (71.8m points)

drools adding fact types in excel file (declaring types)

I am looking on some example excel files to declare a Fact Type in the rule file. How can I add a a fact type in the excel file. I can do it in the drl file as given below.

package KieRule;

global java.util.List names;

declare Invoice
    cardType : String
    price : int
end

rule "HDFC"

when
    invoiceObject : Invoice(cardType=="HDFC" && price>10000);
then
    names.add( "discount for HDFC = 10" );
end;
question from:https://stackoverflow.com/questions/65644695/drools-adding-fact-types-in-excel-file-declaring-types

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I got a solution for that. Posting it here if it help others,

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...