问题描述
我对流口水并不陌生,问题可能很容易,但现在有点头痛
在流口水6.0中org.drools.agent.RuleAgent的替代品是什么? 0或如何使用drool 6.0.0创建RuleAgent的newInstance。
DroolsAgent
类已从版本6和更高版本中删除。您可以使用 KieScanner
或 KieContainer.updateToVersion()
实现类似的行为(可能还有更多的事情)。 / p>
两种方式都在官方文档中进行了说明。
- KieScanner:
- KieContainer.updateToVersion():
希望有帮助,
I am new to drool and question might be quite easy but headache for a now
what is the alternate to org.drools.agent.RuleAgent in drools 6.0.0 or how can i create newInstance of RuleAgent using drool 6.0.0.
The DroolsAgent
class was removed from version 6 and greater. You can achieve a similar behavior (and probably event more) with the KieScanner
or with KieContainer.updateToVersion()
.
Both ways are kind of documented in the oficial documentation.
- KieScanner: http://docs.jboss.org/drools/release/7.0.0.Final/drools-docs/html_single/#_kiescanner
- KieContainer.updateToVersion(): http://docs.jboss.org/drools/release/7.0.0.Final/drools-docs/html_single/#_kiescanner
Hope it helps,
这篇关于从Drool 5.3.3.Final到Drool 6.0.0.Final迁移。在Drool 6中使用RuleAgent替代的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!