REST POST 不支持的媒体类型
2022-09-04 06:40:37
我有这个 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,但我认为它不相关。