2013-08-16 5 views
2

В настоящее время работает над CXF с весной. Он возвращает это предупреждение:Weird ошибка валидации в beans.xml Spring CXF

10:40:38,492 WARN [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-2) 
Ignored XML validation warning: org.xml.sax.SAXParseException: schema_reference.4: 
Failed to read schema document 'http://cxf.apache.org/schemas/jaxrs.xsd', because 
1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>. 

затем возвращает эту ошибку при запуске:

10:40:38,571 ERROR [org.springframework.web.context.ContextLoader] (MSC service thread 1-2) 
Context initialization failed: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: 
Line 14 in XML document from ServletContext resource [/WEB-INF/mvc-dispatcher-servlet.xml] 
is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: 
The matching wildcard is strict, but no declaration can be found for element 'jaxrs:server'. 

это мой beans.xml:

<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:jaxrs="http://cxf.apache.org/jaxrs" 
    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/jaxrs 
     http://cxf.apache.org/schemas/jaxrs.xsd"> 

    <import resource="classpath:META-INF/cxf/cxf.xml" /> 
    <jaxrs:server id="myOrder" address="/"> 
      <jaxrs:servicebeans> 
       <ref bean="orderInfoImpl"> 
       </ref> 
      </jaxrs:servicebeans> 

     </jaxrs:server> 
     <bean id="orderInfoImpl" class="com.example.rest.OrderInfoImpl"> 
     </bean> 

    <context:component-scan base-package="simpleclient, com.example.rest" /> 

    <bean 
     class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <property name="prefix"> 
      <value>/WEB-INF/</value> 
     </property> 
     <property name="suffix"> 
      <value>.jsp</value> 
     </property> 
    </bean> 
</beans> 

ответ

1

был в состоянии исправить это, добавив правильные банки , по-видимому, у jboss 7 есть свои собственные полки cxf, но банки, которые я использовал с моим приложением, были другой версией. Я просто сопоставил банки, и это сработало, также исключить причал в classpath/pom.xml.

0

Я начал испытывать эту ошибку в Apache Karaf - начал происходить, когда я обновился с Oracle Java с 6 по 7. Вернулся к 6, и ошибка остановилась, но еще не исследовала.

Смежные вопросы