我正在构建一个宁静的服务,该服务需要接受任意数量的参数,而不是下面示例中的参数.
假设以下服务程序
@RequestMapping("/start/id/{id}",RequestMethod.GET)
public void startService(@PathVariable String id) {...}
有一个基于RestTemplate
的客户端实现
restTemplate.getForObject("/start/id/{id}",null,id);
问题:但是考虑到可能有数千个id,我必须使用哪种宁静的方法在一个请求中使用RestTemplate
发送所有参数?我已经看到了建议
>将请求正文添加到GET请求-RestTemplate
似乎不可能吗?
>在ID中使用分隔符(例如id1 | id2 | …. | idn)-好像是骇客
>首先放置参数,然后发出GET以引用ID-重复请求,似乎不直观
>添加多个网址参数(?id = foo& id = bar&…..& id = foobar)
我知道以前曾问过类似的问题(calling-a-restful-service-with-many-parameters、how-to-create-rest-urls-without-verbs、can-you-build-a-truly-restful-service-that-takes-many-parameters),但我发现很难找到满意的答案,或者至少找不到基于RestTemplate
的答案.
最佳答案
原文链接:https://www.f2er.com/spring/531769.html