Spring配置文件中属性值不能提示的解决办法(eclipse添加xsd文件)

原因:eclipse中没有配置xsd文件

解决办法:

  • 步骤一:把头文件拷贝到你的spring配置文件中。


  • 步骤二:根据头文件中的链接点击去下载spring对应版本的.xsd文件下载到本地
  • 步骤三:下载好后,添加到eclipse中
  1. 在eclipse菜单中进入Windows 》 prefemces 》XML 》XML Catalog 》Add 》FileSystem 然后选择刚才下载的.xsd文件
  2. location:比如d:\spring-beans-2.5.xsd
  3. key type:选择Schema Location
  4. key填写举例:http://www.springframework.org/schema/beans/spring-beans-2.5.xsd (就是复制头文件中相应的东西) 备注:自己引入spring配置文件的版本!
  5. 重启eclipse。


你可能感兴趣的:(eclipse的使用)