解决:Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type ‘multipart问题
梅秃头 2024-10-19 08:33:01 阅读 62
问题描述:传参格式不正确
<code>Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'multipart/form-data;boundary=--------------------------083037624092353169827681;charset=UTF-8' is not supported]code>
接口我用了@RequestBody接收参数,也就是必须使用对象的方式传参
@RestController
@RequestMapping("/attendance")
@Api(tags = {"考勤管理"})
public class AttendanceController {
@Autowired
private AttendanceService attendanceService;
@PostMapping("/addAttendance")
public int addAttendance(@RequestBody Attendance attendance){
int addAttendance = attendanceService.addAttendance(attendance);
return addAttendance;
}
}
我使用ApiPost的form-data的方式发送请求,故报:
Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'multipart/form-data;boundary=--------------------------083037624092353169827681;charset=UTF-8' is not supported]错误
改用json传参的方式即可:
上一篇: 基于web的宠物商城设计与实现 毕业论文终稿+初稿+修改版论文+开题报告+答辩PPT+论文检测查重报告+Java项目源码及数据库文件+配置说明
下一篇: 【前端】如何制作一个自己的网页(5)
本文标签
解决:Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type ‘multipart问题
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。