Spring NamespaceHandler für XML-Schema-Namespace konnte nicht gefunden werden. Fehler in Terminal

Beim Ausführen, mein Code, auf dem Terminal, gibt es diesen Fehler

Ausnahme im Thread "main" java.lang.RuntimeException: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Konfigurationsproblem: Spring NamespaceHandler für XML-Schema-Namespace kann nicht gefunden werden [http://cxf.apache.org/core]

Beleidigende Ressource: Klassenpfadressource [META-INF / test.xml]

meine test.xml datei ist

<?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>

Derselbe Code funktioniert jedoch in Eclipse. Weiß jemand woran das liegen kann?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage