You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to create the API spec without removing any fields, regardless if their value is null or not. But currently this plugin removes null values from API DTO examples.
You need to describe your context (the title of an issue is not enough)
I am trying to use generateOpenApiDocs to produce the JSON api-spec to disk
What version of spring-boot you are using?
3.4.0-SNAPSHOT
but problem exists also with Spring Boot 2.7
What modules and versions of springdoc-openapi are you using?
I want to create the API spec without removing any fields, regardless if their value is null or not. But currently this plugin removes null values from API DTO examples.
I am trying to use generateOpenApiDocs to produce the JSON api-spec to disk
3.4.0-SNAPSHOT
but problem exists also with Spring Boot 2.7
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
Actual:
Expected:
To reproduce the problem, I created new Spring Boot app here:
https://start.spring.io/
with
and modified build.gradle to this:
I added DemoController.java:
and executed:
and API spec JSON was created under build/openapi.json, and that file has the problem.
Probable cause: I think the problem is in
OpenApiGeneratorTask.kt
that tries to prettyPrint the json:The problem is that GsonBuilder has default NOT to serialize nulls. So a call to
.serializeNulls()
is missing when configuring the builder.PS. It would be also great that pretty printing could be disabled altogether, to work around any future bugs related to that.
The text was updated successfully, but these errors were encountered: