3

我有这个接口使用 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

它正在复制列表值!

我已经尝试过使用数组、整数和字符串通用列表,但没有成功。

4

1 回答 1

4

?ids={ids}@RequestMapping修复问题中删除。只有路径参数需要去那里。

于 2015-08-19T16:50:37.447 回答