On Tue, Mar 26, 2019 at 8:36 PM <[email protected]> wrote:

> Hi,
>
> I'm trying to convert:
>
> {
>   "real": [
>     1,
>     2,
>     3,
>     4
>   ],
>   "ref": {
>     "$ref": "#/real"
>   }
> }
>
>
> to
>
> {
>   'real': [
>     1,
>     2,
>     3,
>     4
>   ],
>   'ref': [
>     1,
>     2,
>     3,
>     4
>   ]
> }
>
>
> May I ask how to I do this with jackson library if this is
> possible/supported?
>
>
I don't think there is anything in core Jackson components to handle that,
but maybe someone is familiar with a tool that would operate on, say,
`JsonNode` to do such reference substitution?

-+ Tatu +-

-- 
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