Hello All,
For example, I have a json string in the below format.
Input:
{
"aName": "aValue",
"bName": "bValue",
I would like to get the json in the below format as output,
{
"aName": "aValue",
"bName": "bValue"
the input can be deserialized into a POJO, but that POJO is non-modifiable.
Is there any way in jackson library to achieve it?