How would you go about serialising a Map using simple XML so that it looks something like:
key
Inste
Have you tried something like:
@ElementMap(entry="property", value="value", attribute=true, inline=true) private Map<String, String> map;
or some combination, i.e. to use the other attributes of the @ElementMap annotation too?