摘要:
1.salience功能:设置规制执行的优先级值:数字(数字越大执行优先级越高)示例:rule "rule1" salience 1 wheneval(true) then System.out.println("rule1");end2.no-loop功能:控制已经执行的规则条件再次满足是否再次执行值:true/false示例:rule "rule1" no-loop true when $customer:Customer(name=="张三") then update($customer); System.o 阅读全文