I want to send something like this from a client to a leisure service
jsonObj =
{
"info": {
"field1": "val1" ..
.....
"fieldN": "valN" ..
}
}
And Iβm not sure how I can deal with this with the help of the recreation service using
Jersey and Jackson in Java
I do not want to create a new information class using Jackson properties with field N, as they will always change. I just want to grab the jsonObject that is inside jsonObject and work with it like JsonObject.
Any thoughts?
source share