SpringCloud Feign 报错 Request met
2022-08-10 本文已影响0人
万事俱备就差一个程序员了
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