Skip to content
Advertisement

JsonMappingException when reading the response from RestTemplate

Seeing the exception when I call the GET method in RestTemplate

com.fasterxml.jackson.databind.JsonMappingException: N/A at [Source: (StringReader); line: 1, column: 13700] (through reference chain: com.homedepot.merch.meter.model.ResultSet[“issues”]->java.util.ArrayList[0]->com.homedepot.merch.meter.model.Issue[“fields”])

the sample java code is

JavaScript

java classses are

JavaScript

and the Issue class definition is

JavaScript

How do I fix this JsonMappingException?

Advertisement

Answer

You are trying to serialize the result of a method that returns void. Also, I am not sure if private access methods can be serialized. I think that serialization methods are not supposed to get parameters, typically they are getters.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement