Skip to content
Advertisement

Java generics: Map nested json response to Java objects

Scenario: I’m working with an unusual external API in which every attribute is a map with multiple values. In order to convert this response into simple Java objects, I had to do some dirty unboxing. Below is one of the typical java class. As you can see how I’m unboxing data from response and mapping them to my java class:

JavaScript

This is the sample util method – unbox – which I’ve created in order to avoid writing such ugly code. Right now, it only works for cases where String is returned.

JavaScript

I’m trying to convert above method into a generic one where I could specify the return type dynamically and cast the returned data accordingly.

Can anyone help me out in creating one?

I’ve tried this:

JavaScript

But it obviously doesn’t work but in theory that’s the kind of solution that I’m expecting.

EDIT: Here’s a sample input of complex type:

JavaScript

EDIT 2: Here’s the final solution: PartyDetailsDto.java

JavaScript

BaseUtil.java

JavaScript

Thanks @deduper @davidxxx for your answers.

Advertisement

Answer

…I followed [@davidxx’s] solution but it doesn’t seem to work when the return type is supposed to be a list or an array. How would i handle that case?…

Through a process I call „EDD“ („Experiment-driven Development“) the following way to handle those cases emerged…

JavaScript

You can observe in main(String[]) that the following calls successfully return the expected result…

JavaScript

Click the green Start button at the top of the page in the link above, to run the experiment.



After feedback in the comments from @saran3h that clarified his use case, the following refactor emerged from a subsequent iteration of the experiment

JavaScript

That new case was successfully tested with…

JavaScript

Observe the results of running the experiment with the above refactor (pardon my French)…

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