我有以下球衣方法声明:
@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) {
在rest客户端中,我尝试调用以下方法:
当我调试方法时,我看到收到的参数为null:
如何重写方法声明?
答案 0 :(得分:3)
这是因为在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();
...
}