swagger-api / swagger-api/swagger-codegen

[Spring Server] Syntax error with Excel MIME Type

Open
#8,488 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Mustache
Stars
17.8k
Forks
6k
PR merge metrics
No merged PRs in 30d

Description

Description

The generated API comes witH syntax error when I use application/vnd.ms-excel to describe a response. Note the produces parameter, it contains two entries and no comma:

@RequestMapping(value = "/oper-units/{operUnitId}/data-import-model",
        produces = { "application/vnd.ms-excel""application/json" }, 
        method = RequestMethod.GET)
    ResponseEntity<?> getDataImportModel(@ApiParam(value = "ID da unidade",required=true) @PathVariable("operUnitId") Integer operUnitId);
Swagger-codegen version

swagger-codegen-cli-3.0.0-SNAPSHOT

Swagger declaration file content or url
openapi: "3.0.0"
(...)
      responses:
        '200':
          description: successful operation
          content:
            application/vnd.ms-excel:
              schema:
                type: string
Command line used for generation

java -jar swagger-codegen.jar generate -i ../../openapi.yaml -l spring -o ../..

Steps to reproduce
Related issues/PRs
Suggest a fix/enhancement

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Reproduce the issue with the supplied OpenAPI declaration and the swagger-codegen-cli-3.0.0-SNAPSHOT Spring generation command. Inspect the Spring server generation entry point for how multiple response MIME types are rendered, then verify that the generated produces annotation separates application/vnd.ms-excel and application/json correctly and produces valid Java.

Written by the indexing model from the issue text.

Assessment

Tech stack
java, spring
Domain
api, backend
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
38/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.