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
if @Produces(MediaType.APPLICATION_JSON + ";charset=utf-8") does not function, then try:
@Produces("application/json;charset=utf-8")
in theory it is the same, but the first option did not work to me