【发布时间】:2018-05-29 10:15:32
【问题描述】:
如何在 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 的全局变量。
【问题讨论】:
-
你有完整的错误信息吗?
-
嗨!我添加了错误消息。
标签: drools