您好,如果已经问过但找不到,我很抱歉。
这是我的问题,我不知道我将发送多少字段到我的网络服务,因为它们将是动态的。因此,我想向我的球衣 jaxb 资源发送一个 json 数组。由于我的 json 数组中的对象将是一维字符串数组,我应该能够执行以下操作:
@POST
@Path("/test")
@Produces(MediaType.APPLICATION_JSON)
public Response InputList(@QueryParam("list") final List<String> inputList)
这是我的 json 数组 { "list": [ "hello", "world" ] }
这似乎不起作用....