我有这个接口使用 Spring cloud Feign 映射我的休息客户端。
@FeignClient(url = "http://localhost:8080")
public interface RestClient {
@RequestMapping(value = "?ids={ids}", method = GET)
List<Posicao> get(@RequestParam(value = "ids") List ids);
}
我的参数中有一个列表,调用客户端我有这个请求:
restClient.get(Arrays.asList(1, 2));
http://localhost:8080/ids=1,2,1,2
它正在复制列表值!
我已经尝试过使用数组、整数和字符串通用列表,但没有成功。