Following up on https://spacetech.dk/how-to-convert-json-string-to-java-model-object.html. Now we want to deserialize a java object on a list with the ObjectMapper readvalue.
To accomplish this you can use the TypeReference like this
List<MyObject> myObjects = mapper.readValue(jsonInput, new TypeReference<List<MyObject>>(){});