昨天我post在将不同类型的参数传递给一个函数时,在严格模式下的一个问题,laune找到了解决方案。建议,我现在使用drools 5.6版。
现在,我仍然有严格模式错误,但另一种情况。不幸的是,我无法应用相同的解决方案。函数creerAction()返回不同类型的对象。有人对这个案子有所了解吗?
这是错误
Unable to Analyse Expression $noeud = creerAction($action,"EvaluerMessageActivable",drools); $action.noeud = $noeud;
$noeud.prochaineActionSiBlocage = obtenirValeurParametre($noeud.prochaineActionSiBlocage, "CN_Raccrocher");
$noeud.message = obtenirValeurParametre($noeud.message, '$MessageUrgenceGlobal'):
[Error: unable to resolve method using strict-mode: java.lang.Object.prochaineActionSiBlocage()]
[Near : {... $noeud.prochaineActionSiBlocage = obt ....}]
[Line: 34, Column: 0] : [Rule name='Row 1 DT-625 Evaluer blocage general']
这是我的口水文件。
package com.desjardins.gtd.dpsccc.routage.vpa.actionsdialogue
import org.drools.spi.KnowledgeHelper;
function Object creerAction(Action actionCourante, String type, KnowledgeHelper drools) {
if(actionCourante.getNoeud()!=null){
String nomActionCourante = actionCourante.getNoeud().getClass().getSimpleName();
if(!nomActionCourante .equals(type))
throw new RuntimeException("Ne peut pas redéfinir le type de " + actionCourante.getNom() + ". Le type était: " + nomActionCourante + " spécifié: " + type);
return actionCourante.getNoeud();
}
else if("EvaluerMessageActivable".equals(type)) return new EvaluerMessageActivable();
else if("Terminer".equals(type)) return new Terminer();
return null;
}
declare Action
nom: String
noeud: java.lang.Object
compteur: Integer
end
declare EvaluerMessageActivable
message: String
prochaineActionSiBlocage: String
end
declare Terminer
nom: String
end
rule "Row 1 DT-625 Evaluer blocage general"
salience 100079
agenda-group "level0"
dialect "mvel"
when
$action:Action(nom =='EM_UrgenceGlobal')
then
$noeud = creerAction($action,'EvaluerMessageActivable',drools); $action.noeud = $noeud
$noeud.prochaineActionSiBlocage = obtenirValeurParametre($noeud.prochaineActionSiBlocage, 'CN_Raccrocher')
$noeud.message = obtenirValeurParametre($noeud.message, '$MessageUrgenceGlobal')
end
感谢您的帮助。
答案 0 :(得分:0)
这行代码
$noeud = creerAction(...);
将creerAction
的返回值分配给未声明的变量。由于函数返回java.lang.Object
,请使用
Object $noeud = creerAction(...);
解决这个问题。当然,$noeud
的后续使用可能必须使用强制转换来允许编译器找到正确的方法或其他任何方法。
不要认为Drools或MVEL取消了Java的所有类型系统。 (Dieu merci!)
答案 1 :(得分:0)
对于我的测试,我使用的是Jetty版本6.1.26,该版本存在drools问题。我已经尝试使用版本8.1.2,它工作正常。
我也禁用了严格模式: System.setProperty(“drools.dialect.mvel.strict”,“false”);