我正在尝试使用 Jersey 库构建一个 RESTfull API,但它给了我一个例外。这是我的文档课
@XmlRootElement
@XmlAccessorType(XmlAccessType.PUBLIC_MEMBER)
public class Docs {
@XmlElement(name = "field")
public String field;
@XmlValue
public String content;
}
@Path("/update")
public class Update {
@POST
@Path("/xml")
@Consumes(MediaType.APPLICATION_XML)
@Produces(MediaType.APPLICATION_XML)
public String createIndexXML(Docs docs)
throws Exception {
System.out.println(docs.content);
return "It works";
}
}
如果我尝试使用 CURL 检查它会抛出Error 415 Unsupported Media Type
curl -XPOST "http://localhost:8089/update/xml" -d '<docs>
<field>title</field>
</docs>'