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 に答える