SpringClould Feign 报错 Request method ‘POST‘ not supported 的解决办法

本文详细解析了如何处理Spring MVC中POST请求被误用为GET的问题,提供了代码示例,并指导了在Fegin接口和Controller中正确传递分页参数的方法。重点在于GET请求下正确使用@RequestParam注解和实体类参数处理。
摘要由CSDN通过智能技术生成

问题展示

2021-10-14 16:39:20.904 ERROR 18488 --- 
[nio-8085-exec-2] c.z.c.c.exception.BasicExceptionHandler  : 
Request method 'POST' not supported

org.springframework.web.HttpRequestMethodNotSupportedException: 
Request method 'POST' not supported
	at org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping.handleNoMatch(RequestMappingInfoHandlerMapping.java:213) ~[spring-webmvc-5.2.12.RELEASE.jar:5.2.12.RELEASE]
	at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.lookupHandlerMethod(AbstractHandlerMethodMapping.java:422) ~[spring-webmvc-5.2.12.RELEASE.jar:5.2.12.RELEASE]
	

解决方案—代码展示

远程fegin接口展示

	/**
     * 列表
     * @return
     */
     @GetMapping("/list")
     Result collectProjectList(@RequestParam("pgQuery") PgQuery pgQuery);

被调用方controller展示(分页参数是一个实体类)

 	@ApiOperation("列表")
    @GetMapping("/list")
    public Result collectList(PgQuery pgQuery) {
        return Result.success(traProjectService.collectList(pgQuery));
    }

思路梳理

在远程调用fegin使用GET请求时 应该附加注解 @RequestParam(“pgQuery”)
实体类或者单个参数同样适用
在controller接受参数时则注解可以不用加

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值