Is it possible to map a JSON to a String if its keys are unknown ? Here is a JSON I get for API:
{
"key1.abc": "Some translation",
"key2.abc": "Some other translation",
...
}
I tried as follows:
ResponseEntity<String> responseEntity = restTemplate.exchange(uri, HttpMethod.GET, requestEntity, String.class);
but it failed with error:
JsonMappingException: Can not deserialize instance of java.lang.String out of START_OBJECT token
Any ideas ? Thank you