如何插入RHS的入口点?
从掌握JBoss Drools 6本书
rule "Routing.."
when
...
then entryPoints["Stream Y"].insert(t)
end
我尝试使用Drools 7来完成这项工作,但我收到错误Unable to build KieBaseModel
。
编辑:完整信息:
Unable to Analyse Expression drools.entryPoints["Stream Y"].insert(t);:
[Error: unable to resolve method using strict-mode: org.drools.core.spi.KnowledgeHelper.entryPoints()]
[Near : {... drools.entryPoints["Stream Y"].insert ....}]
注意:我没有定义任何名为entrypoints
的全局。
答案 0 :(得分:1)
显然,Drools 7中不存在entryPoints
自动变量。
你可以尝试这样的事情:
rule "Routing.."
when
...
then
drools.getEntryPoint("Stream Y").insert(t)
end
希望它有所帮助,