org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST‘ not supported
Request method ‘POST’ not supported今天在将vue部署上nginx的时候,在本地发请求都好使,部署到nginx前台就一直报错405,查看后台报错为HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported这个报错是说后台没有对应接收前台请求的post方法。在网上找了一大波,
·
Request method ‘POST’ not supported
今天在将vue部署上nginx的时候,在本地发请求都好使,部署到nginx前台就一直报错405,查看后台报错为HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported
这个报错是说后台没有对应接收前台请求的post方法。
在网上找了一大波,依序
核对了前端请求方法,
核对了跨域部分,
核对了后端接收的方法,
修改了后端为get方法尝试,
修改了nginx代理部分,
最终发现是在nginx通配符方面。一个报错和nginx毫无关联,只是代理的时候将请求发到了另外的不存在的方法上去,就没找到对应方法。
可以参考博客
最后修改匹配为
location ~ /business/cip/* {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://120.92.151.50:8080/;
}
更多推荐
已为社区贡献6条内容
所有评论(0)