1. 程式人生 > >xml名稱空間與xsd檔案

xml名稱空間與xsd檔案

  1. xml 名稱空間
  • 使用名稱空間來避免衝突
<h:table xmlns:h="http://www.w3.org/TR/html4/">
   <h:tr>
   <h:td>Apples</h:td>
   <h:td>Bananas</h:td>
   </h:tr>
</h:table>

<f:table xmlns:f="http://www.w3school.com.cn/furniture">
   <f:name>African Coffee Table</
f:name
>
<f:width>80</f:width> <f:length>120</f:length> </f:table>
  • 使用預設的名稱空間簡化書寫
對應上面的h 名稱空間
<table xmlns="http://www.w3.org/TR/html4/">
   <tr>
   <td>Apples</td>
   <td>Bananas</td>
   </tr>
</table>

對應上面的f 名稱空間
<
table
xmlns="http://www.w3school.com.cn/furniture">
<name>African Coffee Table</name> <width>80</width> <length>120</length> </table>
  1. xsd(Xml Schema Definition)與 dtd(Document Type Definition)
  • xsd 和 dtd 的作用都是定義xml的合法構建模組,描述xml文件的結構

  • 對dtd檔案的引用:

    <!DOCTYPE note SYSTEM "http://www.w3school.com.cn/dtd/note.dtd">
    
  • 對xsd 檔案的引用:

<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" xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:task="http://www.springframework.org/schema/task"
       xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
        http://www.springframework.org/schema/task
        http://www.springframework.org/schema/task/spring-task-3.1.xsd">

說明

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-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd" 配合使用指定xsd檔案的位置,其中名稱空間與xsd檔案位置緊跟,且一 一對應