我有以下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方法,public javax.ws.rs.core.Response ... throws org.codehaus.jettison.json.JSONException,不应使用任何实体。
是否与我有两个参数有关?
我已经在网上查了一下但与我的情况无关。提前谢谢!
答案 0 :(得分:8)
我想我已经找到了这个问题......它应该是这样的:
Name(@PathParam("name") String name, @PathParam("status") String status )
谢谢!