org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST‘ not supported

水深无声 2024-04-23 20:06 122阅读 0赞

日常报错记录:

org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported]
当前端以post提交一个表单时,后台打印 “POST” 方法不支持。

  1. @PostMapping("/add")
  2. public boolean add(Dishes dishes) {
  3. return dishesService.save(dishes);
  4. }

仔细检查后发现,参数里面要加个注解:@RequestBody

  1. @PostMapping("/add")
  2. public boolean add(@RequestBody Dishes dishes) {
  3. return dishesService.save(dishes);
  4. }

加上该注解后,再进行提交表单,表单中的数据便可以保存成功。写代码还是要细心。。。

发表评论

表情:
评论列表 (有 0 条评论,122人围观)

还没有评论,来说两句吧...

相关阅读