Skip to content
Advertisement

How to using ObjectMapper to map value of an json property to Object when my object have an contractor set this property is null

I am usng google DirectionsResul Object

And then I want to using Object mapper to mapping this json to DirectionsResul Object

JavaScript

Using this code

JavaScript

All is ok but overview_polyline can’t mapping, the points value is null and I see in the EncodedPolyline have a contractor like this

JavaScript

So how can I mapping the points value to the DirectionsResul Object

Here is my result I got Result

Here is all the code that can run

JavaScript

Advertisement

Answer

The problem is that there is no setter for points on EncodedPolyline.

One way to work around this is to use a DeserializationProblemHandler:

JavaScript

I’ve removed objectMapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES) so that the error occurs when Jackson tries to set points. Then we set it reflectively.

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