Skip to content
Advertisement

Jackson serialize nested attribute with same name

Currently, I have a JSON response of the following type.

JavaScript

I want to map my custom class to nested user attributes.

JavaScript

But when I am trying to get the attribute, it is always sending null value. I think it is maping to first occurance of "user" in line no 2.

How can I map it to correct user attribute in line no 3.

Advertisement

Answer

Mapping starts from the root of JSON so the correct class definition for this JSON will be this

JavaScript
JavaScript

If you want to keep the class as it is and only want to use the inner ‘user’, you can do it using JsonNode like this

JavaScript

The at() method accepts the JSON path expression which is the path to a particular node in the JSON.

Here, "/user" means it will find the node user from the root of JSON and will return it.

Similarly,

JavaScript

will give you

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