关键字: myeclipse代码提示 xml代码提示
以applicationContext.
xml为例说明
MyEclipse6.5中
菜单栏 - Window - Preferences - MyEclipse Enterprise Workbenck - Files and Editors - XML - XML Catalog -
右边选中User Specified Enteries - Add -
弹窗中Key Type选URI;
Location - file System - 选到相应的.xsd文件(如spring_home/dist/resources/spring-beans-2.0.xsd);
key项中最后补充加入"/spring-beans-2.0.xsd"
这时会在<beans>标签中加入相应代码如下,也可不做以上操作,直接将如下代码直接写在applicationContext. xml文件中
MyEclipse6.5中
菜单栏 - Window - Preferences - MyEclipse Enterprise Workbenck - Files and Editors - XML - XML Catalog -
右边选中User Specified Enteries - Add -
弹窗中Key Type选URI;
Location - file System - 选到相应的.xsd文件(如spring_home/dist/resources/spring-beans-2.0.xsd);
key项中最后补充加入"/spring-beans-2.0.xsd"
这时会在<beans>标签中加入相应代码如下,也可不做以上操作,直接将如下代码直接写在applicationContext. xml文件中
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
- <!-- 其他配置 -->
- </beans>
本文介绍如何在MyEclipse 6.5中设置XML代码提示功能,通过指定xsd文件路径来增强applicationContext.xml等配置文件的编辑体验。文章详细解释了配置步骤,并提供了一个具体的例子。

9205

被折叠的 条评论
为什么被折叠?



