码迷,mamicode.com
首页 > 其他好文 > 详细

使用xig工具从schema生成schema实例

时间:2015-04-07 17:45:20      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:jaxb   xsd2xig   

1,下载xig工具,xml-xig-0.1.1.jar可以到一下链接下载

  

2.编写schema文件,如下:

  

<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
   xmlns="http://my.soa.com"
   targetNamespace="http://my.soa.com"
   elementFormDefault="qualified">
 <xs:element name="person" >
 <xs:complexType>
 <xs:sequence>
 <xs:element name="firstname" type="xs:string"/>
 <xs:element name="lastname" type="xs:string"/>
 </xs:sequence>
 </xs:complexType>
 </xs:element>
   
   </xs:schema>

3.运行命令行:

  技术分享

4.person.xsd.xml文件如下:

<person>
  <firstname>?{string}</firstname>
  <lastname>?{string}</lastname>
</person>

4person.xig

 

<xig:template document='person' schema='e:/xmlw?/person.xsd' xmlns:xds='http://xml-xsd.sourceforge.net/schema/XmlXsd-0.1'>
  <person>
    <firstname>${xs:string}</firstname>
    <lastname>${xs:string}</lastname>
  </person>
  <xig:generate>
    <!-- Generate instance documents from template document above -->
    <loop count='10'>
    </loop>
  </xig:generate>
</xig:template>

     

使用xig工具从schema生成schema实例

标签:jaxb   xsd2xig   

原文地址:http://blog.csdn.net/u013998070/article/details/44921617

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!