I am using resttemplate with jackson to marshall/unmarshall java/json objects. What would be the best strategy to serialize/deserialize
a Map that may contain key value pairs such that keys are strings and values could be various types for example an ArrayList of custom objects
I did some research on this site and found the use of @JsonAnyGetter @JsonAnySetter could be used in this situation, but wasnt sure of how to deserialize in the context of resttemplate getforobject method. Would one have to write a custom httpmessageconverter to accomplish the deserialization? Thanks in advance.