在REST Jersey响应中返回Gson JsonObject会导致500内部服务器错误

时间:2017-01-05 11:36:44

标签: json rest gson jersey-2.0

我有以下方法将JsonObject作为Rest响应返回:

@GET
@Produces({MediaType.APPLICATION_JSON})
public Response testMethod(){
    String json = "{\"key\" : \"value\"}";
    JsonObject jsonObj = new Gson().fromJson(json, JsonObject.class);
    return Response.ok().entity(jsonObj).build();
}

响应为500内部服务器错误。 当我在“entity”参数中放入任何其他对象时,同样的工作正常。

0 个答案:

没有答案