当前位置: 首页 > 知识库问答 >
问题:

Springdoc以application/x-www-form-urlencoded而非Multipart/form数据的形式发送多部分文件

方长卿
2023-03-14

我正在使用最新版本的openapi-用户界面1.6.7,我无法使文件上传endpoint工作。这是我对参数的配置:

    @PostMapping(
        consumes = MediaType.MULTIPART_FORM_DATA_VALUE,
        produces = MediaType.APPLICATION_JSON_VALUE
    )
    @Operation(
        summary = "Create a new FileResource",
        requestBody = @RequestBody(description = "File to upload")
    )
    public ResponseEntity<FileResourceIdPublicApiDto> create(
        @Parameter(
            description = "File to upload",
            required = true
        )
        @RequestPart
        MultipartFile file

当我在生成的招摇过市UI中使用“试用”按钮时,会出现415个不支持的媒体类型错误。请求头的内容类型为:application/x-www-form-urlencoded

我认为这就是错误的来源。从OpenApi生成的json如下所示:

{
  "operationId": "create_4",
  "parameters": [
   ...
  ],
  "requestBody": {
    "content": {
      "multipart/form-data": {
        "schema": {
          "required": [
            "file"
          ],
          "type": "object",
          "properties": {
            "file": {
              "type": "string",
              "format": "binary",
              "description": "File to upload"
            }
          }
        }
      }
    },
    "description": "File to upload"
  },
  "responses": {
    "200": {
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/FileResourceId"
          }
        }
      },
      "description": "OK"
    }
  },
  "summary": "Create a new FileResource",
  "tags": [
    "File Resource"
  ]
}

我缺少什么来发送表单数据内容类型的正确请求?

共有1个答案

柴意智
2023-03-14

对我来说,将RequestPart替换为RequestParam完成了这项工作!顺便说一句,我正在使用openapi-用户界面1.6.4。

 类似资料:
  • 我试图使用以下客户端代码调用REST服务,目的是发送一些字符串消息详细信息以及附件文件: 我的目标服务器接受Base64编码的内容,这就是为什么额外的从文件传输到ByteArray的原因。 此外,我发现类com.sun.jersey.core.impl.provider.entity.FormProvider用于生产和消费“x-www-form-urlencoded”请求。 但我还是得出了以下结论

  • 问题内容: 之间有什么区别 request.ContentType =“ application / json; charset = utf-8”; 和 webRequest.ContentType =“ application / x-www-form-urlencoded”; 问题答案: 第一种情况是告诉Web服务器您正在发布JSON数据,如下所示: 第二个选项是告诉Web服务器您将对URL中

  • 当内容类型不是text/html、text/plain或text/xml,而是application/x-www-form-urlencoded内容类型时,我很难理解如何设置字符集。 给出以下(简化的)javascript代码: 如果我没有显式设置编码, Firebug告诉我内容类型是"Application/x-www-form-urlencoded; charset=UTF-8"。 例如,如果

  • spring-cloud-starter-openfeign 2.1.1.发行版 我还尝试添加假表单依赖项和@param而不是@requestparam,但没有成功。

  • 但这是错误的,因为值广告是字符串而不是数组。

  • 我试图调用Web服务,但在播放框架2.0. x我无法调用任何编码的Web服务。 我已经研究了代码: 参考:https://stackoverflow.com/a/14938117/4410109 我已经尝试了上面的代码在Play框架2.0.8,但我得到了这个错误: 错误:找不到符号。setContentType(“application/x-www-form-urlencoded;charset=