applicationContext.xml 配置文件
查找约束路径信息
从文档里找 spring-framework-4.2.8.RELEASE\docs\spring-framework-reference 四选一
如:\html\xsd-configuration.html
基础配置(仅仅bean约束配置,AOP 事务等其他没配)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- bean definitions here -->
</beans>
无语法提示解决方法:连约束
window > Preferences > 搜xml 选“XML Catalog” >Add
key type:选 URI
Key:粘贴入 http://www.springframework.org/schema/beans/spring-beans.xsd
File System 按钮 找到Spring包里的文件
如:........ spring-framework-4.2.8.RELEASE\schema\beans
选中spring-beans-s.2.xsd
然后配置bean时就有提示了,就可以自动补全,查看可配置标签了。