복붙노트

[SPRING] 봄 - 몽고 - 1.0.xsd 오류

SPRING

봄 - 몽고 - 1.0.xsd 오류

나는 다음과 같은 오류가 발생하고 그것을 해결할 수 없었어요 n 인터넷 검색도 유익하지 못했습니다. 도와주세요.

Referenced file contains errors (http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd). For more 
 information, right click on the message in the Problems View and select "Show Details..."

이것은 내 코드입니다.

<?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:p="http://www.springframework.org/schema/p"
    xmlns:mongo="http://www.springframework.org/schema/data/mongo"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/data/mongo
    http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <!--   replica-set="localhost:27017,localhost:27018" -->
    <context:annotation-config />
    <mongo:repositories base-package="com.kensho.dms.*" />
    <mongo:jmx/>
    <mongo:mongo host="192.168.55.2" port="27017" />
    <mongo:db-factory dbname="kenshodb" mongo-ref="mongo" />
    <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
        <constructor-arg name="mongo" ref="mongo"/>
        <constructor-arg name="databaseName" value="kenshodb"/>
     </bean>
     <bean id="mongoLoggedInUserDAO" class="com.kensho.nosql.MongoUserDAOImpl"  />


</beans>       

나는 많은 것들을 .다. 나는 그것의 의존성 문제를 느낀다. 도와주세요.

해결법

  1. ==============================

    1.며칠 전부터 동일한 문제가 있었지만 1.0에서 1.1로 변경하면 문제가 사라졌습니다. 그들이 xsd 파일을 변경 한 것 같습니다.

    며칠 전부터 동일한 문제가 있었지만 1.0에서 1.1로 변경하면 문제가 사라졌습니다. 그들이 xsd 파일을 변경 한 것 같습니다.

    http://www.springframework.org/schema/data/mongo/spring-mongo-1.1.xsd 
    
  2. ==============================

    2.나도 이걸 쳤어. 문제는 Spring 데이터 XSD 파일에서 하드 코딩 된 가져 오기입니다. 컨텍스트 및 bean에 대해 schemaLocation에서 가져온 항목을 제거하고 오류를 제거했습니다.

    나도 이걸 쳤어. 문제는 Spring 데이터 XSD 파일에서 하드 코딩 된 가져 오기입니다. 컨텍스트 및 bean에 대해 schemaLocation에서 가져온 항목을 제거하고 오류를 제거했습니다.

    자세한 정보는 여기에 있습니다.

    http://forum.springsource.org/showthread.php?118643-xsd-validation-errors-in-Eclipse-when-using-spring-data

    그리고 여기

    https://jira.springsource.org/browse/DATAJPA-160

  3. from https://stackoverflow.com/questions/11684673/spring-mongo-1-0-xsd-error by cc-by-sa and MIT license