我的 guvnor 规则是这样的:
Rule "aa"
dialect "mvel"
when
Fund( amount> 10000 )
then
Alert fact0 = new Alert();
fact0.setSummary( "hi" );
insert( fact0 );
end
并使用无状态知识会话。现在我想fact0
在代码中得到它。怎么做?
请帮我。
最容易流口水的方法是使用查询。另一种选择是使用 ksession.getObjects()。你可以看看这个答案:Retrieving fact of a specific type from working memory
希望能帮助到你,