添加POST正文时,无法读取路径参数。

public class POJO {
    public int id;

    public void setId(int id){
        this.id = id;
    }
}


...

@POST
@Path("/test/{a}/{b}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.TEXT_PLAIN)
public Response test(@PathParam("a") String a, @PathParam("b") String b, POJO pojo){
     // a has the value of the POST body
     // b is empty
     // pojo is null
}


我发布到
/测试/ x / y

身体:

{
    "id" : 1
}


标头:

Content-Type : application/json


我看了例子https://docs.jboss.org/resteasy/2.0.0.GA/userguide/html_single/
而且无法弄清楚为什么我无法读取路径参数。
这是一个JBoss示例:

@POST
@Path("book/{id}/comments")
public void addComment(@PathParam("id") String bookId, Comment comment);

最佳答案

谢谢@davidhxxx,我的问题是PathParam的导入不正确。

我有import javax.websocket.server.PathParam;而不是import javax.ws.rs.PathParam;

10-07 13:14