当前位置: 代码迷 >> 综合 >> Feign 报错:Request method 'POST' not supported
  详细解决方案

Feign 报错:Request method 'POST' not supported

热度:74   发布时间:2023-12-18 08:07:03.0

如果Fegin代理的是get请求,那么请求参数必须带上@RequestParam 或@RequestBody

错误:

@GetMapping(API_PREFIX + "/repayInfo")
R<List<OutOrderRepay>> repayInfo( List<Integer> payStatus);

正确:

@GetMapping(API_PREFIX + "/repayInfo")
R<List<OutOrderRepay>> repayInfo(@RequestBody List<Integer> payStatus);

 

  相关解决方案