Feign 调用的方法的注解为 @GetMapping,但是一直报错 Request method 'POST' not supported
解决方案
如果 Feign 代理的是 get 请求,则每个参数必须带上 @RequestParam 注解,否则会报 POST not supported
Feign 调用的方法的注解为 @GetMapping,但是一直报错 Request method 'POST' not supported
解决方案
如果 Feign 代理的是 get 请求,则每个参数必须带上 @RequestParam 注解,否则会报 POST not supported