HttpRequestMethodNotSupportedException: Request method ‘POST‘ not supported

HttpRequestMethodNotSupportedException: Request method 'POST' not supported

一、问题

遇到Request method ‘POST’ not supported问题,无法定位到哪个接口导致的

二、解决办法

@Slf4j
@RestControllerAdvice
public class GlobalExceptionAdvice {
	/*
	* 捕捉异常HttpRequestMethodNotSupportedException
	*/
    @ExceptionHandler(value = HttpRequestMethodNotSupportedException.class)
    public R handleValidException(HttpRequestMethodNotSupportedException exception, HttpServletRequest req) {
        log.warn("HttpRequestMethodNotSupportedException{},{},{}",
            exception.getClass(),
            exception.getMessage(),
            req.getRequestURL().toString());
        return R.error();
    }
}

三、参考链接

1、Request method ‘POST’ not supported

当你看到org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'PUT' not supported的错误消息时,它意味着你正在尝试使用PUT请求方法,但该方法在你的代码中并未被支持。 这通常是因为你的代码中没有相应的处理程序方法来处理PUT请求。在你的代码中,你使用了@PostMapping注释来映射HTTP POST请求到特定的处理程序方法。但是,你需要使用@RequestMapping注释来映射HTTP PUT请求到相应的处理程序方法,或者使用@PutMapping注释作为快捷方式来映射HTTP PUT请求。 简而言之,你需要在你的代码中添加一个处理程序方法,并使用@RequestMapping或@PutMapping注释将该方法映射到HTTP PUT请求。这样,当你使用PUT请求时,就不会再出现org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'PUT' not supported的错误了。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘GET‘ not supported](https://blog.csdn.net/weixin_45157411/article/details/123665632)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* [Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘GET‘ not...](https://blog.csdn.net/qq_44347175/article/details/125697957)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值