[org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'DELETE' not supported]
时间: 2023-12-11 19:32:52 浏览: 176
Request Method Not Supported(处理方案).md
HTTP请求方法包括GET、POST、PUT、DELETE等,当我们使用SpringBoot编写Web应用程序时,我们需要在Controller中指定请求方法。如果我们使用了错误的请求方法,就会出现“org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'DELETE' not supported”这样的错误。这个错误表示我们使用了不支持的请求方法,例如在Controller中使用了@DeleteMapping注解,但是我们使用了GET或POST请求方法。要解决这个问题,我们需要检查我们的请求方法是否正确,并确保我们的Controller中使用的请求方法与我们的请求方法相匹配。
阅读全文