REST POST不支持的媒体类型

时间:2014-03-23 21:29:33

标签: java rest curl jersey dropwizard

我有这个VO

public class myVO {
    private final String latitude;
    private final String longtitude;
    private final String meterRadius;

    public myVO(String latitude, String longtitude, String meterRadius) {
        this.latitude = latitude;
        this.longtitude = longtitude;
        this.meterRadius = meterRadius;
    }

    public String getLatitude() {
        return latitude;
    }

    public String getLongtitude() {
        return longtitude;
    }

    public String getMeterRadius() {
        return meterRadius;
    }

}

休息服务

@Path("/listrs")
@Produces(MediaType.APPLICATION_JSON)
public class MyResource {
    Logger logger = LoggerFactory.getLogger(MyResource.class);

    private final AtomicLong counter;

    public MyResource(String template, String defaultName) {
        //this.template = template;
        //this.defaultName = defaultName;
        this.counter = new AtomicLong();
    }

    @GET
    @Timed
    public List<ResultVO> getMyList() {
        List<ResultVO> list = new ArrayList<>();
        list.add(new ResultVO(counter.incrementAndGet(), "dummy text"));
        list.add(new ResultVO(counter.incrementAndGet(), "dummy text1"));
        return list;
    }

    @POST
    @Timed
    @Consumes(MediaType.APPLICATION_JSON)
    public List<ResultVO> getListByLoc(myVO loc) {
        logger.debug(loc.toString());
        return getMyList();
    }
}

使用

进行测试
curl -i -X POST -d '{"latitude": "2.3433", "longtitude": "23.2233", "meterRadius":"5"}' http://localhost:8080/listrs

结果我得到了:

curl: (6) Could not resolve host: 2.3433,
curl: (6) Could not resolve host: longtitude
curl: (6) Could not resolve host: 23.2233,
curl: (3) [globbing] unmatched close brace/bracket at pos 14
HTTP/1.1 415 Unsupported Media Type
Date: Sun, 23 Mar 2014 21:23:16 GMT
Content-Type: text/html;charset=ISO-8859-1
Cache-Control: must-revalidate,no-cache,no-store
Content-Length: 1350

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<title>Error 415 Unsupported Media Type</title>
</head>
<body><h2>HTTP ERROR 415</h2>
<p>Problem accessing /listrs. Reason:
<pre>    Unsupported Media Type</pre></p><br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>

</body>
</html>

知道我做错了什么吗?我使用dropwizard,但我认为它不相关。

1 个答案:

答案 0 :(得分:17)

使用curl添加:

-H "Content-Type: application/json"

另一件事,你可能从windows pc运行它。所以用双引号(")而不是单引号('

包装你的json
-d "{\"latitude\": \"2.3433\", \"longtitude\": \"23.2233\", \"meterRadius\":\"5\"}"

注意,我已使用\

转义内部引号

最后,在你的卷曲中使用-v param。它将帮助您查看发送到服务器的curl。

相关问题