The following is a feign interface I defined, I want to receive all the form request parameters through Map
, which can run correctly in springmvc
@PostMapping(path = "/requestMap", consumes = "application/x-www-form-urlencoded")
Store requestMap(@RequestParam Map<String, String> params);
but I found that when feign client requests, the parameters are placed on the URL, not in the body of the FORM