我可以创建一个从另一个规则文件导入规则的规则文件吗?
我如何(以及是否可以)将 Drools 规则或函数导入到另一个 Drools 规则文件中?
How do I (and can I) import Drools rules or functions into another Drools rules file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是没有必要的。
如果您使用知识构建器加载两个不同的规则文件,则两个文件中的所有规则都将可用。
无需从不同的 DRL 文件导入规则,因为编译时规则全部位于同一个二进制包中。
This isn't necessary.
If you load two different rule files using the knowledge builder all the rules in both files will be available.
There's no need to import rules from a different DRL file because when you compile the rules are all in the same binary package.
drools 中没有导入规则功能。它不允许从另一个包导入规则。
There is no import rule facility in drools. It does not allow importing rule from another package.