-
-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JavaDoc integration not working with SnakeCaseStrategy property naming #2484
Comments
It works well. I'm using these dependencies <!-- Springdoc -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${springdoc.version}</version>
</dependency>
<dependency>
<groupId>com.github.therapi</groupId>
<artifactId>therapi-runtime-javadoc-scribe</artifactId>
<version>0.15.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.therapi</groupId>
<artifactId>therapi-runtime-javadoc</artifactId>
<version>0.15.0</version>
</dependency> |
However, there is a NullPointerException:
|
But as far as I can see you are not using |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
When trying to generate Schema description from JavaDoc comments, it's not working as expected for fields that not match exactly with their JSON representation (camelCase to snake_case for example).
To Reproduce
Steps to reproduce the behavior:
What version of spring-boot you are using?
spring-boot: 3.2.1
What modules and versions of springdoc-openapi are you using?
springdoc-openapi-starter-webmvc-ui: 2.3.0
therapi-runtime-javadoc: 0.15.0
What is the actual and the expected result using OpenAPI Description (yml or json)?
Actual:
Expected:
Expected behavior
A clear and concise description of what you expected to happen.
I'd expect all fields to have the same schema description in the generated json.
What is the expected result using OpenAPI Description (yml or json)?
I'd expect all fields to have the same schema description in the generated json.
Screenshots
If applicable, add screenshots to help explain your problem.
N/A
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: