当前位置:首页 » 《我的小黑屋》 » 正文

解决:Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type ‘multipart问题

9 人参与  2024年10月01日 10:00  分类 : 《我的小黑屋》  评论

点击全文阅读


问题描述:传参格式不正确 

Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'multipart/form-data;boundary=--------------------------083037624092353169827681;charset=UTF-8' is not supported]

接口我用了@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传参的方式即可:


点击全文阅读


本文链接:http://zhangshiyu.com/post/166881.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1