{
"value" : 1234,
"value2" : 123456
}
convert it to
{
"value" : "123456",
"value2" : "123456"
}
I am using ObjectMapper class , my aim is to parseJSON to Mapper class . But now the response has changed due to certain need. Initially all the values were in string but now values are in other types. So is it better to make changes in whole application or there is some way that i could convert all the values to string type in a complex json.
thanks.
You can use
Transform
:Usage: