Drools 7:使用后果的入口点(RHS)

时间:2017-12-15 08:22:57

标签: drools

如何插入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的全局。

1 个答案:

答案 0 :(得分:1)

显然,Drools 7中不存在entryPoints自动变量。 你可以尝试这样的事情:

rule "Routing.."
when
    ...
then 
    drools.getEntryPoint("Stream Y").insert(t)
end

希望它有所帮助,