2012-09-07 21 views
13

を失敗し、私は次のエラーを取得しています:は「http://www.springframework.org/schema/beans/spring-beans-3.0.xsd」スキーマ文書を読み取るために

WARNING: Ignored XML validation warning 
org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document  
'http://www.springframework.org/schema/beans/spring-beans-3.0.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>. 

私のspringapp-servlet.xmlは次のとおりです:

<beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
xmlns:aop="http://www.springframework.org/schema/aop"  
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 
<bean name="/hello.htm" class="springapp.web.HelloController"/> 
</beans> 

お勧めします。

答えて

2
<beans 
    xmlns="http://www.springframework.org/schema/beans" 
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:security="http://www.springframework.org/schema/security" 
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xsi:schemaLocation=" 
     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
     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://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd 
     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
+11

あなたは正確に何を変更したか説明してください。 – FracturedRetina

+1

私の問題を解決しなかった – Igal

+0

http://www.gontu.org/wp-content/uploads/2014/08/Spring05.zip –

3

このエラーメッセージが表示されたとき、それは単にCLASSPATHのjarファイルがないためです。いくつかの春のアプリケーションは、春の瓶のために非常に空腹であるようです。私のアプリはクラスパス上でこれらのすべてを必要としている:

${OTS_DIR}/org.springframework.aop-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.aspects-${VERSION}.jar:\ 
${OTS_DIR}/com.springsource.org.aopalliance-${AOPALLIANCE_VER}.jar:\ 
${OTS_DIR}/org.springframework.asm-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.beans-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.context-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.core-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.expression-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.jdbc-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.jms-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.orm-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.transaction-${VERSION}.jar:\ 
${OTS_DIR}/org.springframework.instrument-${VERSION}.jar 
関連する問題