【发布时间】:2017-11-02 05:52:56
【问题描述】:
我有一个 jersey 端点 (JAX-RS),我正在尝试使用 text/xml req 来访问它。我要返回一个 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。
【问题讨论】:
标签: jersey jax-rs media-type http-status-code-415