一直以来传list参数都是用的post请求 ,但是在最近的去windows项目中遇到了接口是get请求传参是list集合的情况,后来研究了下给出的解决方案如下:
public List<UserResponse> getUsers(List<Integer> userIdList) {
String reqURL = String.format("127.0.0.1:9510/v1/users/list?userIds=%s", StringUtils.join(userIdList, "&userIds="));
try {
//发送同步请求
String response = HttpClientUtil.sendHttpGet(reqURL);
if (EmptyUtils.isNotEmpty(response)) {
return JsonUtil.json2Reference(response, new TypeReference<DataResult<List<UserResponse>>>(){}).getData();
}
} catch (Exception e) {
}
return null;
}
当然,get请求的长度是有限的,这一点使用的时候需要注意。
希望对需要的小伙伴有所帮助