在做的一个SVN项目,突然springmvc.xml报错了,其他人的没问题

错误提示:
Multiple annotations found at this line:
- schema_reference.4: Failed to read schema document 'http://www.springframework.org/
schema/context/spring-context-3.2.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.
- cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for
element 'context:property-placeholder'.

 来大神指导一下

SVN同步时不要提交配置文件呀!不同时间,不同配置编译出来的文件肯定不一样。。只要提交自己修改的.java文件就行了,

xsd是Xml Schemas Definition,Xml Schemas描述了xml文档的结构。
可以用指定的Xml Schemas来验证某个xml文档。这里就是用spring-context-3.2.xsd来验证springmvc.xml的结构是否有问题。
Xml Schemas本身也是一个xml文档,它可以存储在本地项目中,也可以上网搜索得到。
这里报错说明读Xml Schemas文档失败。可能是网络临时中断。