使用postMan调试接口出现 Content type ‘multipart/form-data;charset=UTF-8‘ not supported“

使用postMan调试接口出现 Content type 'multipart/form-data;charset=UTF-8' not supported"

  • 问题原因
  • 解决方案

最近好久没写springboot项目了,然后写了一个添加用户的接口,使用postman测试时出现了问题。如下图:

使用postMan调试接口出现 Content type ‘multipart/form-data;charset=UTF-8‘ not supported“_第1张图片

org.springframework.web.HttpMediaTypeNotSupportedException: Content type ‘multipart/form-data;boundary=--------------------------121447464228391674964565;charset=UTF-8’ not supported

问题原因

原因是接口做了规范,默认就是通过@RequestBody 的方式请求的;也就是每一个请求必须是通过实体对象进行传参,不能通过form-data 表单提交的方式进行传参;

使用postMan调试接口出现 Content type ‘multipart/form-data;charset=UTF-8‘ not supported“_第2张图片

解决方案

body选择为raw模式,同时改文件格式为json方式提交

使用postMan调试接口出现 Content type ‘multipart/form-data;charset=UTF-8‘ not supported“_第3张图片

你可能感兴趣的:(springboot随笔,postman,lua,测试工具)