Google 在 Drools 中收集导入
当我尝试在 Drools 规则中导入 MultiMap 时,出现以下错误
[11,25]: [ERR 102] Line 11:25 mismatched input 'COLLECT' expecting 'identifier' in import
有人知道如何在 Drools 规则中导入任何 com.google.common.collect 吗?
PS 问题已解决 如果有人感兴趣,您应该使用反引号,如下所示
com.google.common.`collect`.Multimap
When I try to import MultiMap in Drools rule it caused an error below
[11,25]: [ERR 102] Line 11:25 mismatched input 'COLLECT' expecting 'identifier' in import
Does anyone know how can I import any com.google.common.collect in Drools rule?
P.S. Problem soleved
If anyone is interested you should use backquotes like below
com.google.common.`collect`.Multimap
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题已解决如果有人感兴趣,您应该使用如下反引号
com.google.common.`collect`.Multimap
Problem soleved If anyone is interested you should use backquotes like below
com.google.common.`collect`.Multimap