最近我正在使用流口水,我想对某些对象进行一些特殊检查。我需要使用when
规则部分中的函数,但出现错误。例子:
function boolean newFunction(int a){
if(a>0)
return true;
else
return false;
}
rule "new rule"
salience 100
dialect "mvel"
when
eval(newFunction(1))
then
System.out.println("OK");
end
我总是得到的错误是:
unable to resolve method using strict-mode: java.lang.Object.newFunction(java.lang.Integer)
节中的功能不支持流口水when
吗?
谢谢!