其他分享
首页 > 其他分享> > HttpRequestMethodNotSupportedException: Request method 'POST' not supported

HttpRequestMethodNotSupportedException: Request method 'POST' not supported

作者:互联网

    @PostMapping("testPost")
    public void testPost() {
    }

 在浏览器直接访问测试时:

 

 

后台:

 

可是明明后台是一个post请求,却报了个不支持get

查看浏览器后台:

 

 浏览器直接输网址发送的是get请求

改成GetMapping或RequestMapping

或者在浏览器控制台输入:

fetch(new Request('url',{
    method:'POST', 
    headers: {'Content-Type': 'application/x-www-form-urlencoded'},
    body:""
})).then((resp)=>{console.log(resp)})

,可以发送post请求

 

标签:浏览器,resp,supported,后台,testPost,HttpRequestMethodNotSupportedException,POST,metho
来源: https://www.cnblogs.com/tyroblogs/p/16301680.html