标签:注意 关联 命名空间 mapping class ges 开发人员 type utf-8
1 //一个完整的SCHEMA约束文档 2 <?xml version="1.0" encoding="UTF-8"?> 3 <!-- 4 传智播客Schema教学实例文档。 5 模拟servlet2.5规范,如果开发人员需要在xml使用当前Schema约束,必须包括指定命名空间。 6 格式如下: 7 <web-app xmlns="http://www.example.org/web-app_2_5" 8 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 9 xsi:schemaLocation="http://www.example.org/web-app_2_5 web-app_2_5.xsd" 10 version="2.5"> 11 --> 12 <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" 13 targetNamespace="http://www.example.org/web-app_2_5" 14 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 15 xmlns:tns="http://www.example.org/web-app_2_5" 16 elementFormDefault="qualified"> 17 18 <xsd:element name="web-app"> 19 <xsd:complexType> 20 <xsd:choice minOccurs="0" maxOccurs="unbounded"> 21 <xsd:element name="servlet"> 22 <xsd:complexType> 23 <xsd:sequence> 24 <xsd:element name="servlet-name"></xsd:element> 25 <xsd:element name="servlet-class"></xsd:element> 26 </xsd:sequence> 27 </xsd:complexType> 28 </xsd:element> 29 <xsd:element name="servlet-mapping"> 30 <xsd:complexType> 31 <xsd:sequence> 32 <xsd:element name="servlet-name"></xsd:element> 33 <xsd:element name="url-pattern"></xsd:element> 34 </xsd:sequence> 35 </xsd:complexType> 36 </xsd:element> 37 <xsd:element name="welcome-file-list"> 38 <xsd:complexType> 39 <xsd:sequence> 40 <xsd:element name="welcome-file" maxOccurs="unbounded"></xsd:element> 41 </xsd:sequence> 42 </xsd:complexType> 43 </xsd:element> 44 </xsd:choice> 45 <xsd:attribute name="version" type="double" use="optional"></xsd:attribute> 46 </xsd:complexType> 47 </xsd:element> 48 </xsd:schema>
标签:注意 关联 命名空间 mapping class ges 开发人员 type utf-8
原文地址:http://www.cnblogs.com/anzhi/p/7447541.html