以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 Catalog来引用Spring的XML Schema文件,确保beans标签能够正确地引用schemaLocation,从而实现对Spring配置文件的有效验证。
661

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



