如何在xml / xsd中处理数组以生成POJO类?

时间:2015-04-09 18:10:29

标签: java xml xsd jaxb

REST WS的XML响应示例 -

<UserInfoDataContract xmlns="http://schemas.datacontract.org/2004/07/Interzoic.SSO.Shared"  xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<DisplayName>Test User</DisplayName>
<Email>test@test.com</Email>
<FirstName>Test</FirstName>
<IsSuperUser>false</IsSuperUser>
<LastName>User</LastName>
<Password>testuser1</Password>
<PortalID>0</PortalID>
<Roles xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<a:string>Registered Users</a:string>
</Roles>
<UserID>43</UserID>
<Username>testuser</Username>
</UserInfoDataContract>

使用http://xmlgrid.net/xml2xsd.html生成的XSD

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
      <!-- XML Schema Generated from XML Document on Thu Apr 09 2015 11:18:33 GMT-0500 (CDT) -->
      <!-- with XmlGrid.net Free Online Service http://xmlgrid.net -->
   <xs:element name="UserInfoDataContract">
          <xs:complexType>
                 <xs:sequence>
                        <xs:element name="DisplayName" type="xs:string"></xs:element>
                        <xs:element name="Email" type="xs:string"></xs:element>
                        <xs:element name="FirstName" type="xs:string"></xs:element>
                        <xs:element name="IsSuperUser" type="xs:string"></xs:element>
                        <xs:element name="LastName" type="xs:string"></xs:element>
                        <xs:element name="Password" type="xs:string"></xs:element>
                        <xs:element name="PortalID" type="xs:int"></xs:element>
                        <xs:element name="Roles">
                               <xs:complexType>
                                      <xs:sequence>
                                             <xs:element name="a:string" type="xs:string"></xs:element>
                                         </xs:sequence>
                                      <xs:attribute name="xmlns:a" type="xs:string"></xs:attribute>
                                  </xs:complexType>
                           </xs:element>
                        <xs:element name="UserID" type="xs:int"></xs:element>
                        <xs:element name="Username" type="xs:string"></xs:element>
                    </xs:sequence>
                 <xs:attribute name="xmlns" type="xs:string"></xs:attribute>
                 <xs:attribute name="xmlns:i" type="xs:string"></xs:attribute>
             </xs:complexType>
      </xs:element>

当我尝试在eclipse中从上面的XSD创建JAXB类时,它给了我与

相关的错误
<xs:attribute name="xmlns" type="xs:string"></xs:attribute>
<xs:attribute name="xmlns:i" type="xs:string"></xs:attribute> 

<xs:attribute name="xmlns:a" in Roles element

<xs:element name="a:string" type="xs:string"></xs:element>

所以我删除了它们并添加了

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.datacontract.org/2004/07/Interzoic.SSO.Shared"  xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays"  targetNamespace="http://www.w3.org/2001/XMLSchema-instance"  elementFormDefault="qualified" attributeFormDefault="unqualified">

在顶部。

&#34;角色&#34;从我的XML中引用XSD,以便我可以创建一个正确的POJO类?

参考http://www.w3.org/TR/xmlschema-0/#ListDt,列表应该以这种方式声明

<xsd:simpleType name="listOfMyIntType">
<xsd:list itemType="myInteger"/>
</xsd:simpleType> 

我无法弄清楚如何将其应用于我的XSD。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

我想在

中的xml中

<Roles xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

xmlns:a 被生成xsd的ide视为属性,这就是生成的模式中的原因

<xs:attribute name="xmlns" type="xs:string"></xs:attribute>

所以我同意删除

<xs:attribute name="xmlns:a" type="xs:string"></xs:attribute>
<xs:attribute name="xmlns" type="xs:string"></xs:attribute>
<xs:attribute name="xmlns:i" type="xs:string"></xs:attribute>
来自xsd的

我唯一的猜测就是尝试设置

targetNamespace="http://schemas.datacontract.org/2004/07/Interzoic.SSO.Shared"

因为它在你的xml中明确使用