If the structure of your data and POJOs does not really match,
databinding is not going to be easy, unfortunately.

So often the best bet would be to first bind into intermediate
representation, like JsonNode, then transform it
to a structure that is compatible with POJO, and use
`ObjectMapper.treeToValue(node, TargetType.class);`
Or it may be easy to at that point handle binding manually by
extracting data via JsonNode API.

-+ Tatu +-
On Fri, Oct 19, 2018 at 4:36 PM Ralf Heydenreich <[email protected]> wrote:
>
> Hi all,
> I have the following data structure (omitted some attributes):

-- 
You received this message because you are subscribed to the Google Groups 
"jackson-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to