配置 drools 和 maven 并使用它们编写 hello world 应用程序
我想学习 drools 和 Maven,任何人都可以帮助我提供配置 drools 和 Maven 的链接,并使用它们编写一个基本的 hello world 示例。
提前致谢
I want to learn drools and maven can any one help me with the links for configuring drools and maven and writing a basic hello world example using them.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该先阅读手册,然后尝试谷歌它。以前也有人问过这样的问题,例如: 如何通过我的 Web 应用程序部署 Drools Flow 和规则
但无论如何。如果您使用 Maven 和 Spring,这是如何集成它的:
您首先需要包含 Drools 依赖项:
定义应用程序上下文:
然后您可以将
ksession1
作为 bean 注入。You should first read the manual, then try google it. There have also been questions like this asked before, for example: How to deploy Drools Flow and rules by my web application
But anyways. This is how to integrate it if you use Maven and Spring:
you first need to include Drools dependencies:
Define the application context:
Then you can inject
ksession1
as a bean.尝试谷歌:
Drools Maven 教程
的第一个结果:http://www.installationwiki.org/ Set_Up_for_JBoss_Drools。请注意,Maven 是一个“构建”工具(实际上不仅仅是),而 Drools 是一个平台/库。所以使用Drools通常不依赖于Maven。因此,您可能想要获得单独的教程。
Try google: First result for
Drools Maven Tutorial
: http://www.installationwiki.org/Set_Up_for_JBoss_Drools.Note that Maven is a "build" tool (actually it's more) whereas Drools is a platform/library. So using Drools does normally not depend on Maven. You might thus want to get separate tutorials.