我正在尝试使用 feign.HeaderMap 注释在其余请求中传递 HTTP 标头的映射,但这些标头出现在正文中。
下面的代码:
@FeignClient(name = "accounts", url = "localhost:8080") 公共接口 AccountClient {
@RequestMapping(method = RequestMethod.GET, value = "/rest/accounts/get", produces = MediaType.APPLICATION_JSON_VALUE)
Account findOne(@RequestParam("id") String id, @HeaderMap Map headers);
}