如何获取列表<字符串>作为 jersey2 客户端的响应
2022-09-01 07:19:48
我想知道如何从客户端提取 as 响应。List<String>
jersey-2.0
我已经试过了,
List<String> list = client
.target(url)
.request(MediaType.APPLICATION_JSON)
.get(new GenericType<List<String>>(){});
但是,上面的代码不起作用。它不是返回预期的值,而是返回一个值。List<String>
null