我正在尝试使用REST在netbeans / java中构建一个POST方法。出于某种原因,这段代码在调用时会不断返回错误,是什么想法?
@POST
@Path("findByImage")
public String findByImage() {
return "hello";
}
它返回错误:
输入例外报告
消息
description服务器遇到内部错误(),导致无法完成此请求。
例外
javax.ws.rs.WebApplicationException: java.lang.IllegalArgumentException: Error parsing media type ', application/xml'
note The full stack traces of the exception and its root causes are available in the GlassFish Server Open Source Edition 3.1.2 logs.
答案 0 :(得分:0)
如果您使用错误的“Content-Type”标头(',application / xml')发送POST请求,则会出现此错误。例如,我可以使用下一个命令重现它:
curl -i -X POST -H "Content-Type: , application/xml" http://localhost:8080/jsfDemo/resources/testing/findByImage