I have a complex structure of data, that can describe by HashMap inside HashMap. I need create XML file of structure. Like this:
<map>
<key1>
<map>
<key1>someString1</key1>
<key2>someString2</key2>
</map>
</key1>
<key2>
<map>
<key1>someString1</key1>
<key2>someString2</key2>
</map>
</key2>
</map>
But I noticed, JAXB has some problems with it. Is there any way to make XML from maps?