I need to convert one POJO into the following XML:
<Root>
<Version>2.0</Version>
<Name>John</Name>
<Age>18</Age>
<UserId>22491</UserId>
<Country>USA</Country>
<AnotherData>
<Records>
<AnotherRecord>
<Field1>XXX</Field1>
<Field2>XX</Field2>
<Field3>CCCCCCCC</Field3>
<Field4>XXX9000</Field4>
<Field5>XXX00345</Field5>
</AnotherRecord>
</Records>
</AnotherData>
</Root>
I know how to convert the fields below the root tag, it's not a problem. But from the AnotherData my problem's starting.
To represent the xml above I need some class like this:
puclic class Root{
public String Version;
public String Name;
public String Age;
public String UserID;
public String Country;
public AnotherData AnotherData;
}
public class AnotherData{
public Records Records;
}
public class Records{
List<AnotherRecord> list;
}
public class AnotherRecord{
public String Field1;
public String Field2;
public String Field3;
public String Field4;
public String Field5;
}
But I don't need of this structure of class, I like implement my classes in a more simple mode, and "force" the tag structure in xml.
My class would be like below, but keeping the structure xml like above.
puclic class Root{
public String Version;
public String Name;
public String Age;
public String UserID;
public String Country;
public AnotherData AnotherData;
List<AnotherRecord> list;
}
public class AnotherRecord{
public String Field1;
public String Field2;
public String Field3;
public String Field4;
public String Field5;
}
@XmlPathextension (see: blog.bdoughan.com/2010/09/…(. Please let me know if you are interested in an example demonstrating how it could be done. – Blaise Doughan Aug 15 '12 at 15:00