5

在运行时,我的代码,在终端上,它给出了这个错误

线程“主”java.lang.RuntimeException 中的异常:org.springframework.beans.factory.parsing.BeanDefinitionParsingException:配置问题:找不到 XML 模式命名空间的 Spring NamespaceHandler [http://cxf.apache.org/core]

违规资源:类路径资源 [META-INF/test.xml]

我的 test.xml 文件是

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:cxf="http://cxf.apache.org/core"
    xsi:schemaLocation="http://www.springframework.org/schema/beans     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
     http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">


    <bean id="clientI"
        class="LI" />
    <bean id="clientL"
        class="LIn" />

        <cxf:bus>
        <cxf:outInterceptors>
            <ref bean="clientI" />
        </cxf:outInterceptors>
        <cxf:inInterceptors>
            <ref bean="clientL" />
        </cxf:inInterceptors>
    </cxf:bus>
</beans>

然而,同样的代码在 eclipse 中也能工作。有谁知道问题可能是什么?

4

2 回答 2

3

出现此问题是因为我的类路径中不存在 cxf-bundle JAR

你可以从这里得到它:http: //mvnrepository.com/artifact/org.apache.cxf/cxf-bundle/2.7.6(最新版本)。

于 2014-01-28T14:31:50.077 回答
0

我猜你的类路径中没有包含 cxf 模式的 JAR 尝试将它添加到你的类路径中

于 2013-09-19T14:46:22.490 回答