如果我想通过json,如何注释球衣方法?
How to annotate jersey method if I want to pass json?
我有以下球衣方法声明:
@POST
@Path("/fooPath")
@Produces({MediaType.APPLICATION_JSON})
@Consumes({MediaType.APPLICATION_JSON})
public Response isSellableOnline(@FormParam("productCodes") final List<String> productCodes,
@FormParam("storeName") final String storeName,
@Context HttpServletRequest request) {
在休息客户端我尝试像这样调用以下方法:
当我调试方法时,我发现收到的参数为空:
如何重写方法声明?
这是因为在 isSellableOnlie 方法上您期望或试图提取表单参数,但传入的 POST 请求是 JSON。
好吧,如果你想要 JSON,你应该使 POJO Class 能够序列化 JSON。
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Store {
private String storeName;
private List<String> productCodes;
public Store() {
}
public String getName() {
return name;
}
public List<String> getProductCodes() {
return productCodes;
}
}
然后在你的方法中:
@POST
@Path("/fooPath")
@Produces({MediaType.APPLICATION_JSON})
@Consumes({MediaType.APPLICATION_JSON})
public Response isSellableOnline(Store store) {
store.getName();
...
}
我有以下球衣方法声明:
@POST
@Path("/fooPath")
@Produces({MediaType.APPLICATION_JSON})
@Consumes({MediaType.APPLICATION_JSON})
public Response isSellableOnline(@FormParam("productCodes") final List<String> productCodes,
@FormParam("storeName") final String storeName,
@Context HttpServletRequest request) {
在休息客户端我尝试像这样调用以下方法:
当我调试方法时,我发现收到的参数为空:
如何重写方法声明?
这是因为在 isSellableOnlie 方法上您期望或试图提取表单参数,但传入的 POST 请求是 JSON。
好吧,如果你想要 JSON,你应该使 POJO Class 能够序列化 JSON。
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Store {
private String storeName;
private List<String> productCodes;
public Store() {
}
public String getName() {
return name;
}
public List<String> getProductCodes() {
return productCodes;
}
}
然后在你的方法中:
@POST
@Path("/fooPath")
@Produces({MediaType.APPLICATION_JSON})
@Consumes({MediaType.APPLICATION_JSON})
public Response isSellableOnline(Store store) {
store.getName();
...
}