failed to read schema document 'http://www.springframework.org/schema/beans/spring-beans-3.0.xsd'

前端 未结 2 1167
醉话见心
醉话见心 2021-02-05 14:53

While starting my Spring App, I am getting the following error :

WARNING: Ignored XML validation warning
org.xml.sax.SAXParseException: schema_reference.4: Faile         


        
2条回答
  •  野性不改
    2021-02-05 15:31

    When I got this error message, it was merely because of a missing jar in my CLASSPATH. Some spring applications seem to be very hungry for spring jars. My app wound up needing all of these on the classpath:

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

提交回复
热议问题