我有一个球衣端点(JAX-RS),我正在尝试使用文本/xml 请求。我要返回一个 http 415,但我不明白为什么。这是信息。有任何想法吗?谢谢。
@Path("/bid")
@Produces("text/xml;charset=ISO-8859-1")
@Consumes({"text/xml", "application/xml"})
@Resource
public class BidController {
@RolesAllowed("blah")
@POST
public Response bid(final HttpServletRequest request) {
我通过 Postman(REST 客户端)点击它并发送 {"Content-Type":"text/xml"}
我的 POST 正文绝对是格式良好的 xml。