Java,Rest API,多部分

时间:2018-11-29 10:14:10

标签: java json rest spring-boot

我想在数据库中保存一个实体。该实体具有多个字段和照片(照片我将保存在byte []中)。我写了RestController,但没有用。 格式为JSON,我使用邮递员,在form-data中添加文件,在原始文件中放入正文并使用JSON

@RequestMapping(value = "/upload", method = RequestMethod.POST, consumes = {"multipart/form-data"})
@ResponseBody
public void storeAd(@RequestPart("client") @Valid Client client, @RequestPart("file") @Valid MultipartFile file) throws IOException {
    Client myClient = client;
    byte[] s = file.getBytes();
    int a = s.length;

}
  

我看到错误:   已解决由处理程序执行引起的异常:

org.springframework.web.HttpMediaTypeNotSupportedException:
    Content type 'application/json' not supported

邮递员的请求1

1 个答案:

答案 0 :(得分:0)

您需要在标题部分添加“ Content-Type:application / x-www-form-urlencoded”。