No String-argument constructor/factory method to deserialize from String value (”)

Had this when I accidentally was calling

mapper.convertValue(...)

instead of

mapper.readValue(...)

So, just make sure you call correct method, since argument are same and IDE can find many things

Leave a Comment