状态码为405表示请求的方式不对,请求的方式有get、post、head、put……常用的为post和get。
我的报错为[org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported]然后我将HttpPost request=new HttpPost(url)改HttpGet request=new HttpGet(url)
完美解决!
原因是我请求的服务是另一个springboot项目启动的,地址为http:localhost:8080/sendMail?test=a。这个项目中控制层我是用@GetMapping(value="/sendMail")接收的,故只允许get请求,若换成
@RequestMapping(value="/sendMail"),就可以用post请求。
http请求状态码为返回405
最新推荐文章于 2024-09-30 22:31:24 发布