2

我正在尝试使用 Drools 创建 spring roo 应用程序。但是我在 applicationContext.xml 中遇到了错误。

错误:

在此行找到多个注释: - 无法找到架构命名空间“http://drools.org/schema/drools-spring”的元素“drools:execution-node”的 Spring NamespaceHandler - cvc-complex-type.2.4.c :匹配的通配符是严格的,但找不到元素“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">

在连接流口水时,我查看了以下来源: 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 集成和 xml 命名空间的链接。

4

2 回答 2

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/容器/spring/drools-spring.xsd/?v=source

我试图通过以下堆栈溢出问题找到更可靠的参考:git hub 上 drools-spring.xsd 的位置

于 2017-07-18T16:54:06.143 回答
-1

我怀疑问题在于您使用的是 Spring 3.1,但使用了 drools-spring XML 配置,该配置加载了一些非常古老且过时的 Spring 依赖项。

我建议避免使用 drools-spring XML 配置。只需配置一个 Spring bean 来包含您的知识库并充当它的接口。

于 2013-02-10T16:15:55.417 回答