无法读取架构文档http://www.springframework.org/schema/beans/spring-context.xsd

时间:2019-03-28 17:01:16

标签: java spring

当我通过IntelliJ使用Spring时,出现以下错误消息:

  

无法读取架构文档   'http://www.springframework.org/schema/beans/spring-context.xsd',   因为1)找不到文档; 2)文件无法   读; 3)文档的根元素不是。

对此提供帮助。

2 个答案:

答案 0 :(得分:0)

我在 xsi:schemaLocation

中使用了错误的网址

如果使用:

  

http://www.springframework.org/schema/beans/spring-context.xsd

我应该用过:

  

http://www.springframework.org/schema/context/spring-context.xsd

那解决了我的问题。 我交叉检查了这一点,并在没有bean的spring-context.xsd中将URL触发到浏览器中。

希望其中一些人可以提供帮助。

答案 1 :(得分:0)

@Indrajeet:正确的spring.xml或application-context.xml格式:

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

    <context:component-scan base-package="com.demo" />

    <mvc:annotation-driven/>

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

</beans>