在Drools中写规则 - 条件和

时间:2016-02-08 10:51:46

标签: drools rule-engine accumulate

我坚持为特定的问题陈述编写规则。 我有一个excel文件有列id,专业,工资。专业可以采取诸如“肿瘤学”,“泌尿学”等的价值。我必须计算与每个专业相对应的总薪水。 有两种方法可以做到这一点。

首先:

rule "Total salary of Oncology" 

no-loop
lock-on-active
salience 100
    when

    $m : Masterclass( $id : phyid , $p : p,spec=="Oncology")
     not Masterclass( spec=="Oncology", phyid < $id)
    $total : Number() from accumulate ( Masterclass(  $salary : salary ,spec=="Oncology") ,
                init( double total =0;), 
                action(total+=$salary;),
                result(  new Double (total)))
    then
    System.out.println($m.getSpec());
    System.out.println("Total target pay is : " + $total + " of specialty : "+ $m.getSpec());
    retract($m);
end 

同样适用于其他专业。 这条规则很好。

第二: 只写一个读取特殊值的规则,然后总结与之对应的工资。 我试图实现这一点,但没有成功。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

这远非完美。但请注意,您不必插入一些特定的字符串。运行没有字符串匹配的规则将产生所有专业的累计总和。

你应该把String包装成一个Java类 - 我只是懒得用一个字段创建一个合适的Java类。

rule "trigger read"
when
  not String()
then
  String s = read_any_way_you_want();
  insert( s );
end;

rule "Total salary of something" 
when
  $spec: String()
  $m : Masterclass( $id: phyid , spec == $spec)
  not Masterclass( spec == $spec, phyid < $id)
  $total : Number() from
     accumulate ( Masterclass($salary: salary, spec == $spec) ,
            init( double total =0;), 
            action(total+=$salary;),
            result( new Double (total)))
then
  System.out.println($m.getSpec());
  System.out.println("Total target pay is : " + $total + 
                     " o specialty : "+ $m.getSpec());
  retract($spec);
end