Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们使用 Drools 作为向用户提供内容的规则处理语言。我在 EC2 实例上部署了我的服务,我需要测试规则 (DRL) 是否存在于实例内存中?Drools有什么方法或API吗?
是的,您可以检查规则是否在 kiebase 中可用。您只需要知道 kieBase 名称、规则的包和规则名称即可使用此功能。
kieContainer.getKieBase("kiebasename").getRule("packagename","rulename").getName()