org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST‘ not supported
日常报错记录:
org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported]
当前端以post提交一个表单时,后台打印 “POST” 方法不支持。
@PostMapping("/add")
public boolean add(Dishes dishes) {
return dishesService.save(dishes);
}
仔细检查后发现,参数里面要加个注解:@RequestBody
@PostMapping("/add")
public boolean add(@RequestBody Dishes dishes) {
return dishesService.save(dishes);
}
加上该注解后,再进行提交表单,表单中的数据便可以保存成功。写代码还是要细心。。。
还没有评论,来说两句吧...