public class RequestXml // this pojo for RequestXML
{
private Contact[] Contact;
public Contact[] getContact ()
{
return Contact;
}
@XmlElement(name="Contact")
public void setContact (Contact[] Contact)
{
this.Contact = Contact;
}
}
another pojo
public class Contact // this class is for contact
{
private String content;
private String role;
public String getContent ()
{
return content;
}
@XmlElement(name="content")
public void setContent (String content)
{
this.content = content;
}
public String getRole ()
{
return role;
}
@XmlElement(name="role")
public void setRole (String role)
{
this.role = role;
}
}
As I am getting result like below while marshalling
<Contact role="firstUser"/>
<Contact role="secondUser"/>
<Contact role="LastUser"/>
As below is the expected output:
<Contact role="firstUser">aaaa</Contact>
<Contact role="secondUser">bbbb</Contact>
<Contact role="LastUser">cccc</Contact>
Please help me on this.
For marshalling the field as content, use the
@XmlValue
annotation. For marshalling it as attribute, use the@XmlAttribute
. This is how theContract
POJO looks like, along with my test:The test:
This provides the following output:
EDIT: Also, see What is the difference between using @XmlElement before field and before getter declaration? for the difference of annotating getters/setters and fields.