我有一个网络服务,我想通过 POST 方法向它发送一个 JSON 字符串。到目前为止,我制作的 Web 服务都使用了该GET
方法,看起来像这样:
@GET
@Produces("application/json")
@Path("{name}")
public String getJson(@PathParam("name") String name) {
//TODO return proper representation object
CompanyDatabase cmpdb=new CompanyDatabase();
String json=cmpdb.searchAgent(name);
return json;
}
我需要对此方法进行哪些更改才能接受 POST 数据?