gpt4 book ai didi

java - RESTful Web 服务为 POST 请求返回不支持的媒体类型

转载 作者:太空宇宙 更新时间:2023-11-04 06:12:11 24 4
gpt4 key购买 nike

我一直在使用 Jersey 开发 RESTful Web 服务。我已经创建了我的第一个服务,现在我正在尝试发送请求。这是我的单个 POST 方法:

@POST
@Path("getQuote")
@Consumes(MediaType.WILDCARD )
@Produces(MediaType.APPLICATION_XML)
public Response getQuote(
@FormParam("effectiveTime") String effectiveTime,
@FormParam("responseType") String responseType,
@FormParam("transform") String transform,
@FormParam("data") String data,
@FormParam("dataType") String dataType,
@FormParam("source") String source) {

String output = "";
try {
Map<String, String> formParams = new HashMap<String, String>();
formParams.put("effectiveTime",effectiveTime);
formParams.put("responseType",responseType);
formParams.put("transform",transform);
formParams.put("data",data);
formParams.put("dataType",dataType);
formParams.put("source",source);
//do stuff
} catch (Exception e) {
System.out.println(e);
output = "Error";
}
return Response.status(200).entity(output).build();
}

我有一个 HTML 测试表单,可用于发送数据,并使用 RequestBin 检查内容类型是否正确。以下是请求中的一些 header :

Host: requestb.in
Content-Length: 16176
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0
Content-Type: application/x-www-form-urlencoded

我尝试了以下内容类型,但没有成功:

@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Consumes("application/x-www-form-urlencoded")
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Consumes(MediaType.APPLICATION_XML)
@Consumes(MediaType.WILDCARD )
& unspecified (no @Consumes annotation)

我不确定如何调试此请求。我尝试使用curl 来测试以下参数:

curl --data "effectiveTime=1o1o1&dataType=lolo&data=lololol&transform=&responseType=lolol" http://localhost:8080/services/ahrdi/getQuote

结果相同。

最佳答案

也许尝试使用curl设置媒体类型 header

curl -i -H "Content-Type:application/x-www-form-urlencoded" --data "effectiveTime=1o1o1&dataType=lolo&data=lololol&transform=&responseType=lolol" http://localhost:8080/services/ahrdi/getQuote

关于java - RESTful Web 服务为 POST 请求返回不支持的媒体类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28564465/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com