In my application i use some API via HTTP and it returns responces as xml. I want automaticaly bind data from xml to beans.
For example bind following xml:
<xml>
<userid>123456</userid>
<uuid>123456</uuid>
</xml>
to this bean (maybe with help of annotations)
class APIResponce implement Serializable{
private Integer userid;
private Integer uuid;
....
}
What the simplest way to do this?
I agree with using JAXB. As JAXB is a spec you can choose from multiple implementations:
Here is how you can do it with JAXB:
When used with the follow Demo class:
Will produce the following XML: