我们使用eclipse编辑spring配置文件时经常没有提示而无从下手时 现在我们就来解决没有提示的问题
原因是因为eclipse中没有配置xsd文件
步骤一把如下头文件拷贝到你的spring配置文件中
<?xml version= encoding=UTF?>
<beans xmlns=
xmlns:xsi=instance
xmlns:aop=
xmlns:tx=
xmlns:jdbc=
xmlns:context=
xmlns:util=
xsi:schemaLocation= contextxsd
beansxsd
jdbcxsd
txxsd
aopxsd
utilxsd>
</beans>
步骤二根据头文件的中的链接点击去下载spring对应版本的xsd文件 到本地
步骤三下载好之后接下来就是要添加到eclipse中
在eclipse菜单中进入
window>prefernces>XML>XML Catalog>Add >File System然后选择刚才下载下来的xsd文件
location:比如C:\springbeansxsd
key type:选择Schema Location
key:填写/schema/beans/springbeansxsd
添加完成之后重启eclipse 看看是否有提示 如果还没有就多添加几个版本的xsd文件试试