Hi, Is there an easy way to mutate a `JsonObject`? If I have such an object already and I wish to ad...
n
Hi, Is there an easy way to mutate a
JsonObject
? If I have such an object already and I wish to add a couple of elements somewhere nested deep inside is that possible programatically? I think I would have to effectively clone the whole thing myself in order to achieve that.
i
it seems like recent example of using custom JSON serializer based on
JsonTransformingSerializer
to order elements of
JsonArray
can be easily adapted to your need.