I want to put a quote "" in the following json from RESTEasy (with Jackson).
{
"isReachable": false,
"timestamp": 1353449973347
}
{
"isReachable": "false",
"timestamp": "1353449973347"
}
The reason why I do that is because I am using GWT, and gwt cannot convert timestamp into long datatype. Do you know how to RESTEasy to output value as string?
Thanks