1

我正在尝试使用 REST 在 netbeans/java 中构建 POST 方法。由于某种原因,此代码在调用时不断返回错误,有什么想法吗?

@POST
@Path("findByImage")
public String findByImage() {
    return "hello";
}

它返回错误:

类型异常报告

信息

描述服务器遇到一个内部错误 () 阻止它完成这个请求。

例外

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.
4

1 回答 1

0

如果您发送带有错误“Content-Type”标头(“应用程序/xml”)的 POST 请求,则会收到此错误。例如,我可以使用下一个命令重现它:

curl -i -X POST -H "Content-Type: , application/xml" http://localhost:8080/jsfDemo/resources/testing/findByImage
于 2013-02-05T11:05:03.460 回答