警告:一个HTTP GET方法,公共javax.ws.rs.core.Response...throws org.codehaus.jettison.json.JSONException,不应使用任何实体
2022-09-04 21:55:26
我有以下GET方法,它无法将结果发送回客户端。
/*@GET here defines, this method will process HTTP GET requests. */
@GET
@Path("/test/{name}/{status}")
@Produces("application/json")
public Response Name(@PathParam("name,status") String name, String status ) throws JSONException {
String total = "100";
.
.
.
String result = "" + jsonObject;
return Response.status(200).entity(result).build();
}
当我运行它时,我有下面的消息:警告:HTTP GET方法,公共javax.ws.rs.core.Response...throws org.codehaus.jettison.json.JSONException,不应该消耗任何实体。
这是否与我有两个参数的事实有关?
我已经在网上检查过,但与我的情况无关。提前致谢!