-d x=1&y=2(请注意
=,不是
:)是表单数据(
application/x-www-form-urlenpred)向其发送了请求的正文,其中您的资源方法应更像
@POST@Path("/sumPost")@Produces(MediaType.TEXT_PLAIN)@Consumes(MediaType.APPLICATION_FORM_URLENCODED)public String sumPost(@FormParam("x") int x,@FormParam("y") int y) {}
并且以下请求将起作用
curl -XPOST "http://localhost:8080/CurlServer/curl/curltutorial/sumPost" -d'x=5&y=3'
注意: 在Windows中,必须使用双引号(
"x=5&y=3")
您甚至可以分离键值对
curl -XPOST "http://localhost:8080/..." -d 'x=5' -d 'y=3'
默认
Content-Type值为
application/x-www-form-urlenpred,因此无需设置。
@QueryParams应该是查询字符串(URL的一部分)的一部分,而不是主体数据的一部分。所以你的要求应该更像
curl "http://localhost:8080/CurlServer/curl/curltutorial/sumPost?x=1&y=2"
但是,由于此原因,由于您没有在主体中发送任何数据,因此您可能应该仅将resource方法作为
GET方法。
@GET@Path("/sumPost")@Produces(MediaType.TEXT_PLAIN)public String sumPost(@QueryParam("x") int x,@QueryParam("y") int y) {}
如果要发送JSON,那么最好的选择是确保您具有处理反序列化到POJO 的JSON提供程序[ 1 ]。然后你可以有类似
public class Operands { private int x; private int y; // getX setX getY setY}...@POST@Path("/sumPost")@Produces(MediaType.TEXT_PLAIN)@Consumes(MediaType.APPLICATION_JSON)public String sumPost(Operands ops) {}
[ 1 ]-重要的是,您 确实 具有JSON提供程序。如果您没有,则会收到一条异常消息,例如 “找不到mediatypeapplication / json和类型Operands的MessageBodyReader”
。我将需要知道Jersey版本以及是否使用Maven,才能确定应该如何添加JSON支持。但是对于一般信息,您可以看到
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)