【问题标题】:failed to read schema document 'http://www.springframework.org/schema/beans/spring-beans-3.0.xsd'未能读取架构文档“http://www.springframework.org/schema/beans/spring-beans-3.0.xsd”
【发布时间】:2012-09-01 05:31:17
【问题描述】:

在启动我的 Spring 应用程序时,我收到以下错误:

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>

请提出建议。

【问题讨论】:

    标签: spring schema


    【解决方案1】:

    当我收到此错误消息时,这仅仅是因为我的 CLASSPATH 中缺少一个 jar。一些 spring 应用程序似乎对 spring jars 非常渴望。我的应用最终需要类路径中的所有这些:

    ${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
    

    【讨论】:

      【解决方案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">
      

      【讨论】:

      • 你能解释一下你到底做了什么改变吗?
      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2015-05-17
      • 2015-11-01
      • 2019-08-19
      • 2021-11-27
      • 1970-01-01
      • 2014-12-04
      • 2015-06-10
      相关资源
      最近更新 更多