(转载)无联网情况下如何让MyEclipse 识别 spring-beans-2.5.xsd 文件

手动添加 schema文件,方法如下:

windwos->preferences->myeclipse->files and editors->xml->xmlcatalog

点击“add”,在出的窗口中的keyTType中选择URL,在locationspring-beans-2.5.xsd中选择"File system",然后spring解压目录的dist/resources目录中选择Spring-beans-2.5.xsd,回到设置窗口的时候不要急着关闭窗口,应把窗口中的Key Type改为SchemaLocation,key改为http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

**************************************************************
手工添加spring配置文件的DTD描述

使用myeclipse开发spring,在编写配置文件的时候可能遇到无法使用帮助,来自动添加xml元素的问题,是因为无法查找spring的DTD描述。这里做个记录手工添加DTD的方法 
window--》preferences--》MyEclipse--》Files and Editors--》XML--》XML Catalog 
   
1)点击ADD 
2)Key Type:选择URL
在location中选择FileSystem然后在spring的解压目录的dist/resources目录中选择spring-bean-2.5.xsd 

   Location:点击浏览--》找到spring源码包--》dist --》resources --》 
             spring-beans-2.X.xsd(根据你使用的spring版本决定) 
             将  它的完整路径\spring-beans-2.X.xsd 填写到location一栏中 
3)此时修改Key Type 为Schema Lcation 
4)Key :在给出的字符串后添加 -->  /spring-beans-2.X.xsd 
5)重新打开配置文件测试一下
 
 
其中key值应该和applicationContext.xml中的
xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.0.xsd">对应上。
 

相关推荐