Bug Report Checklist
Description
When I run the JavaSpring generator in my maven build execution from my OpenAPI definition yaml file, in the java code generated the #description value in the @operation annotation is absent.
@Operation(
operationId = "xxxxxx",
summary = "xxxxxxx",
tags = { "xxxxx" },
)
it should be:
@Operation(
operationId = "xxxxxx",
summary = "xxxxxxx",
description = "xxxxxxxx",
tags = { "xxxxx" },
)
openapi-generator version
5.4.0
OpenAPI declaration file content or url
Any endpoint definition with a description will reveal the problem.
Generation Details
Generation running with maven plugin.
Steps to reproduce
Clear
Related issues/PRs
Clear
Suggest a fix
To correct the problem, simply replace in "modules/openapi-generator/src/main/resources/JavaSpring/api.mustache"
@Operation(
operationId = "{{{operationId}}}",
{{#summary}}
summary = "{{{.}}}",
{{/summary}}
{{#vendorExtensions.x-tags.size}}
by
@Operation(
operationId = "{{{operationId}}}",
{{#summary}}
summary = "{{{.}}}",
{{/summary}}
{{#description}}
description= "{{{.}}}",
{{/description}}
{{#vendorExtensions.x-tags.size}}
Bug Report Checklist
Description
When I run the JavaSpring generator in my maven build execution from my OpenAPI definition yaml file, in the java code generated the #description value in the @operation annotation is absent.
it should be:
openapi-generator version
5.4.0
OpenAPI declaration file content or url
Any endpoint definition with a description will reveal the problem.
Generation Details
Generation running with maven plugin.
Steps to reproduce
Clear
Related issues/PRs
Clear
Suggest a fix
To correct the problem, simply replace in "modules/openapi-generator/src/main/resources/JavaSpring/api.mustache"
by