如何为MyEclipse添加XML文档所使用的XML Schema

如何为MyEclipse添加XML文档所使用的XML Schema,第1张

1、开MyEclipse,从菜单栏找到“Window”--->“Preferences(首选项)”;

2、在左侧导航菜单栏找到“MyEclipse”--->“Files and Editors”---->“XML”--->“XML

Catalog”;

3、在右边的界面中,选择“User Specified Entries”,点击右边的“Add...”

4、在d出的“Add XML Catalog Element”对话框中点击“File System...”,为Location输入框添加XSD文件所在路径;

5、.xsd文件添加后,在下面的“Key:”右边的文本框会自动添加一个URI,如Spring的为:

http://www.springframework.org/schema/beans,如果没有自动添加,使用别的文本编辑器打开此.xsd文件,找到相应的<xsd:schema xmlns...>名称空间声明;

6、“Key Type:”右边的下拉框中有“Namespace Name”与“Schema Location”两个选项,

将Key Type置为Schema Location;如果是DTD,那里将会有三个类型:Public ID,System ID,URI;

7、在Key:右边的文本框中的URI后面加上/,再加上此xsd的名字,

如spring-beans-2.5.xsd的key为:

http://www.springframework.org/schema/beans/spring-beans-2.5.xsd;

8、点击“OK”保存后,即可看到“User Specified Entries”已有了所增加的xsd;

9、重启MyEclipse即可,注意如果提示不出来,并在状态栏的左下出现“Content Assist not available at the current location”,请在光标位置键入一个空格再使用Alt+/试试;

java里可以再在resources里面新建一个XML file或者 file文件

XML file 会自动生成XML头,在下面加入内容就可以了,首先要有一个根节点,然后如果需要用到一些类,如:spring的一些类,就需要引入包,如:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/beans

http://www.springframework.org/schema/mvc

http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

<context:component-scan base-package="com.dist.*.controller" />

</beans >

其中<?xml ……就是头,<beans 是根节点,下面的<content:……是内容。

如果添加的事properties文件,格式如下:

# 连接池配置

pool.size = 2

pool.max = 50

然后jsp调用读取xml文件的方法去读取自重的内容就可以了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11643620.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存