Spring配置文件报Referenced file contains errors :beans/factory/xml/spring-beans-4.3.xsd

Posted 软件猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring配置文件报Referenced file contains errors :beans/factory/xml/spring-beans-4.3.xsd相关的知识,希望对你有一定的参考价值。

网上参考了一些别人的方法,这个问题一般是版本问题导致的,首先确认你的版本是否一致(如果你的电脑上只有一个版本的spring,直接跳过这一步)。

然后呢,你看一下自己的配置文件,

<?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/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    
    <!-- 配置自动扫描 -->
    <context:component-scan base-package="cn.fxd"></context:component-scan>
    
     <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views"></property>
        <property name="suffix" value=".jsp"></property>
     </bean>
</beans>
注意这一行:http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd,看看是不是是4.0.xsd。入过不是,就会报错。也就说,这里的版本要一致。




以上是关于Spring配置文件报Referenced file contains errors :beans/factory/xml/spring-beans-4.3.xsd的主要内容,如果未能解决你的问题,请参考以下文章

Referenced file contains errors (xml文件第一行小红叉错误)

Xcode报referenced from错误的总结

Eclipse Xml编译错误Referenced file contains errors - spring-beans-4.0.xsd

Eclipse Xml编译错误Referenced file contains errors - spring-beans-4.0.xsd

can't find referenced pointcut myMethod的解决

如果配置spring时出现 It is indirectly referenced from required .class files