I made a small Rest webservice using Jersey 1.11. When i call the url that returns Json, there are problems with the character encoding for non english characters. The corre
responseMessage is bean class in which we can send UTF-8 charset in response.
responseMessage
UTF-8 charset
return Response.ok(responseMessage).header("Content-Type", "application/json;charset=UTF-8").build();