springdoc swagger3 文件上传API正确写法

错误写法

  1. 接口测试执行按钮没反应
@PutMapping("/api/file")
public String upload(
            MultipartFile file
) {}
  1. request body变为json格式
    在这里插入图片描述
@PutMapping("/api/file")
public String upload(
    @RequestPart("file")
            MultipartFile file
) {}

正确写法

@PutMapping("/api/file",
	consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public String upload(
    @RequestPart("file")
            MultipartFile file
) {}

posted on 2022-04-11 22:38  路过君  阅读(508)  评论(0编辑  收藏  举报

导航