I'm trying to use JAXB to unmarshal some XML produced by another system into a Java bean-style object. Here's an example of the XML I'm processing.
<document>
<someList>
<key1>value1</key1>
<key2>value2</key2>
<key3>value3</key3>
...
</someList>
<simple1>simple1value</simple1>
</document>
I need to get JAXB to parse this and populate an instance of a class similar to:
@XmlRootElement("document")
@XmlAccessorType(XmlAccessType.PROPERTY)
public class MyDocument {
private String simple1;
private Map<String, String> someList = new HashMap<String, String>();
@XmlElement(name = "someList")
public Map<String, String> getSomeList() {
// ???
}
public void setSomeList(Map<String, String> someList) {
// ???
}
@XmlElement(name = "simple1")
public String getSimple1() {
return simple1;
}
public void setSimple1(String simple1) {
this.simple1 = simple1;
}
}
I can't get the mapping right, whatever I have tried. I need to end up with a map containing something like: key1->value1, key2->value2, key3->value3 i.e., the XML element name used as the map key, and the element value used as the map value. I don't know the key names in advance, or how many there will be.
The JAXB built-in type mapping couldn't cope with my XML format. I tried writing an XmlAdapter and annotating the getSomeList() function with @XmlJavaTypeAdapter(MyXmlAdapter.class) but this didn't work. I've seen lots of examples on the web for marshal/unmarshal of HashMap but these all assume a different XML format and I can't see how to change them to suit mine.
I have some restrictions. I can't change the XML format as it comes from an external service. There are a number of simple fields with fixed names like simple1 as shown above; these are working fine when mapped with @XmlElement, and I have to keep these. I also have to use JAXB and annotations (for reasons too lengthy to enumerate here).
What do I need to do to get this mapping working? I'd be happy to introduce an intermediary class to wrap the Map called someList rather than go directly to the Map if that would help. I can also change any of the class definitions. If I need to use an XmlJavaTypeAdapter, could you show me how to wire this up? I'm sure lots of people will have run into this issue before, but I'm totally stuck!
Thanks for any help you can offer, it will be appreciated.