I am new to JAXB and am currently working on a project which requires unmarshalling a complex XML in to more than one nested objects. For example suppose I have following XML
<person>
<bio>
<id>12345</id>
<name>Keth TTT</name>
<age>30</age>
</bio>
<address>
<no>1232</no>
<street>York Street</street>
<city>NewYork<city>
<country>USA</country>
</address>
</person>
and suppose i have following domain objects
class Person{
String id;
String name;
int age;
Address address;
}
and
class Address{
String name;
String no;
String street;
String city;
String country;
}
If the XSD is mtaching or have the matching structure, JAXB will easily populate those POJOs. But in here we need to do complex mapping(Ex: both Person and Address classes contain same attribute name). How can we travel through these objects and populate both objects?