1

我遇到了“无法找到 XML 模式命名空间的 Spring NamespaceHandler”这个奇怪的问题。我在我的 spring 应用程序上下文中引用 GATE 命名空间。它是一个可执行 jar,其中一个 java 类实例化了 spring 应用程序上下文。当我通过 eclipse 在我的本地机器上测试它时它工作正常。但是,当我尝试将它作为带有 java 主类的可执行 jar 运行时,就会出现问题。

这是例外。


org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://gate.ac.uk/ns/spring]
Offending resource: class path resource [applicationContext.xml]

如您所见,它在抱怨门命名空间。

这是应用程序上下文条目。


<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:util="http://www.springframework.org/schema/util" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:gate="http://gate.ac.uk/ns/spring"
    xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd 
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
       http://gate.ac.uk/ns/spring http://gate.ac.uk/ns/spring.xsd">

架构是可访问的并且是有效的。

可执行 jar 包含与门相关的 jar 文件。这是门的 pom 文件条目


<dependency>
            <groupId>gate</groupId>
            <artifactId>gate</artifactId>
            <version>5.1</version>
        </dependency>
        <dependency>
            <groupId>gate</groupId>
            <artifactId>gate-asm</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>gate</groupId>
            <artifactId>gate-compiler-jdt</artifactId>
            <version>1.0</version>
        </dependency>

这是java代码片段


try{
    AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("/applicationContext.xml");
        this.processor = (TestProcessor) ctx.getBean("testProcessor");
   }catch (Exception ex) {
    ex.printStackTrace();
   }

这是 Gate 文档参考。

http://gate.ac.uk/releases/gate-5.0-beta1-build3048-ALL/doc/tao/splitch3.html#x5-900003.27

不知道出了什么问题,任何指针将不胜感激。

谢谢

4

1 回答 1

2

门自定义命名空间的命名空间处理程序将在此应用程序提供的 jar 文件(gate.jar?)中指定,如果您查看 jar 文件,您应该看到一个 META-INF/spring.handlers 文件,其中包含以下类型:

http://gate.ac.uk/ns/spring=*NamespaceHandler

这是您的程序在启动时无法找到的处理程序。您的类路径可能在主程序中关闭,或者如果您使用某些东西将 jar 组合成一个 jar(uber jar),那么 META-INF/spring.handlers 文件在不同 jar 文件中的合并可能会搞砸,那里但是,如果您创建了一个 uber jar,则可以使用很好的解决方法。

于 2012-07-12T02:32:34.850 回答