gpt4 book ai didi

java - 如果我想传递json,如何注释jersey方法?

转载 作者:行者123 更新时间:2023-12-01 22:29:40 28 4
gpt4 key购买 nike

我有以下 Jersey 方法声明:

    @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) {

在休息客户端中,我尝试调用以下方法,如下所示: enter image description here

当我调试方法时,我发现收到的参数为空:

enter image description here

如何重写方法声明?

最佳答案

这是因为在 isSellableOnlie 方法上您期望或尝试提取表单参数,但传入的 POST 请求是 JSON。

如果你想要 JSON,你应该使 POJO 类能够序列化 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();
...
}

关于java - 如果我想传递json,如何注释jersey方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28084369/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com