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

时间:2015-02-17 15:05:00

标签: java web-services rest jersey media-type

我一直在使用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检查了内容类型是否正确。以下是请求中的一些标题:

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

具有相同的结果。

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:0)

eclipse正在重新使用原始战争,没有任何改动,因为我在运行mvn编译战争后没有刷新我的项目:战争

我运行mvn clean,在项目浏览器中刷新我的项目,运行mvn compile war:war并重新启动服务器并且请求现在已被接受。