我正在尝试使用Drools创建spring roo应用程序。但是我遇到了applicationContext.xml中的错误。
错误:
此行找到多个注释: - 无法为元素'drools找到Spring NamespaceHandler:schema命名空间的执行节点'http://drools.org/schema/ 滴料弹簧” - cvc-complex-type.2.4.c:匹配的通配符是strict,但是没有为元素'drools:execution-node'找到声明。
这是一个applicationContext.xml:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:drools="http://drools.org/schema/drools-spring"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://drools.org/schema/drools-spring http://drools.org/schema/drools-spring.xsd">
连接drools时我会查看以下内容: http://www.packtpub.com/article/drools-integration-modules-spring-framework-apache-camel http://blog.mersoft.com/2011/09/07/getting-started-with-drools-5-2 http://docs.jboss.org/drools/release/5.4.0.Final/droolsjbpm-integration-docs/html_single/index.html#d0e666
也许他们会帮助别人。
听到的是流口水豆 <drools:execution-node id="node1" />
<drools:resources>
<drools:resource type="XSD" source="classpath:model.xsd"/>
<drools:resource type="DRL" source="classpath:test.drl"/>
</drools:resources>
请帮我配置名称空间。并给我更多关于Drools spring integration和xml名称空间的链接。
答案 0 :(得分:0)
您收到错误的原因是因为http://drools.org/schema/drools-spring.xsd无法提供服务。如果您找到正确提供的URI,则您的错误应该消失。我找到的示例URI是http://grepcode.com/file_/repository.jboss.org/nexus/content/repositories/releases/org.drools/drools-spring/5.6.0.Final/org/drools/container/spring/drools-spring.xsd/?v=source
我试图通过以下堆栈溢出问题找到更可靠的引用:Location of drools-spring.xsd on git hub
答案 1 :(得分:-1)
我怀疑问题是你正在使用Spring 3.1,但是使用了drools-spring XML配置,它加载了一些相当旧的和derepit Spring依赖项。
我建议避免使用drools-spring XML配置。只需配置一个Spring bean来包含你的知识库并充当它的接口。