Spring的配置文件xml中报错:xml文件报错Referenced file contains errors (http://www.springframework.org/schema/cont

今天打开我的ssh项目,突然Spring的xml配置文件中报错:

Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-4.1.xsd). For more information, right click on the message in the Problems View and 
select "Show Details..."

在eclipse中点击一下菜单栏的project–>clean一下就好了,百度了一下clean这个作用是什么,参考了别人的博客总结如下:

    由于eclipse的编译是基于时间戳的判断机制的。因此当你按build all的时候有些eclipse认为时间戳没有改变的类不会被编译。因此你可以先clean一下再编译。这个时候eclipse会将所有的以前编译信息清除然后编译。 eclipse —>project —–>clean… 选项将工程中的.class文件删除,同时重新编译工程,类似于jbuild中的rebuild

你可能感兴趣的:(错误总结)