如何通过我的 Web 应用程序部署 Drools Flow 和规则
我刚刚开始我的新项目。我的项目经理说 Drools 是新技术,我们将包括 drools 流程和规则,并将我们的 Web 应用程序与其集成。
如何将 Drools 流程和规则集成到 Web 应用程序中?
I've just now started my new project. My project manager said that Drools is the new technology and we will include drools flow and rules and will integrate our web application with it.
How does one integrate Drools flows and rules to within a web-application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您使用什么技术。例如,如果您使用 Java+Maven+Spring,您首先需要包含 Drools 依赖项:
定义应用程序上下文:
然后您可以将
ksession1
作为 bean 注入。It depends on what technologies you use. If, for example, you use Java+Maven+Spring, you first need to include Drools dependencies:
Define the application context:
Then you can inject
ksession1
as a bean.