Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' is not supported
时间: 2023-11-02 11:04:14 浏览: 197
基于SpringDM的WEB应用开发
Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' is not supported] 这个错误通常发生在后台接收到一个不支持的POST请求时。根据你提供的引用,你可以通过给方法参数添加@RequestBody注解来解决此问题。在你的代码中,将方法签名修改为 @PostMapping("/add") public boolean add(@RequestBody Dishes dishes) { return dishesService.save(dishes); } 即可。
阅读全文