也就是说,在前后端发送数据时,出现JSON格式转换错误,从而访问不到后台接口。
不添加@RequestBody虽然可以成功访问,但是无法获取到对象数据
警告内容:
// http://localhost:5679/student/select4 // {"list":["计算机系","英语系"]} @PostMapping("/select4") public Listselect4(@RequestBody Map list) { return studentService.select4(list); }
上一篇:springboot手动提交事务