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
Is your feature request related to a problem? Please describe.
I'm consistently challenged when documenting Java APIs using OpenAPI Description (YAML or JSON) due to the absence of native support for JEP 413.
This JEP introduces the @snippet Javadoc tag, which significantly enhances the ability to document examples directly within Javadoc comments.
Presently, there exists a functional albeit clumsy workaround involving the combination of the @code tag and <pre> and </pre> tags.
Describe the solution you'd like
I propose integrating support for JEP 413 directly into OpenAPI Description, thereby enabling the recognition and proper interpretation of the @snippet tag within Javadoc comments.
This enhancement would empower developers to seamlessly embed example descriptions from Javadoc comments into the OpenAPI documentation.
Consequently, API documentation would become more comprehensive, illustrative, and maintainable.
The conversion process should maintain the format of the @snippet tag as follows:
The current alternative requires manual formatting of Javadoc comments using a combination of the @code tag and <pre> and </pre> tags.
However, this method is laborious, prone to errors, and time-consuming.
By directly supporting JEP 413 within OpenAPI Description, the need for such cumbersome workarounds would be eliminated, streamlining the documentation process significantly.
The text was updated successfully, but these errors were encountered:
Javadoc support in springdoc-openapi is baed on therapi-runtime-javadoc.
This is already looged as an enhancement request: dnault/therapi-runtime-javadoc#66
Is your feature request related to a problem? Please describe.
I'm consistently challenged when documenting Java APIs using OpenAPI Description (YAML or JSON) due to the absence of native support for JEP 413.
This JEP introduces the
@snippet
Javadoc tag, which significantly enhances the ability to document examples directly within Javadoc comments.Presently, there exists a functional albeit clumsy workaround involving the combination of the
@code
tag and<pre>
and</pre>
tags.Describe the solution you'd like
I propose integrating support for JEP 413 directly into OpenAPI Description, thereby enabling the recognition and proper interpretation of the
@snippet
tag within Javadoc comments.This enhancement would empower developers to seamlessly embed example descriptions from Javadoc comments into the OpenAPI documentation.
Consequently, API documentation would become more comprehensive, illustrative, and maintainable.
The conversion process should maintain the format of the
@snippet
tag as follows:from:
to:
Instead of converting it to:
{@snippet id='t' lang="JSON" : { "a": 1, "b": 2 } }
Describe alternatives you've considered
The current alternative requires manual formatting of Javadoc comments using a combination of the
@code
tag and<pre
> and</pre>
tags.However, this method is laborious, prone to errors, and time-consuming.
By directly supporting JEP 413 within OpenAPI Description, the need for such cumbersome workarounds would be eliminated, streamlining the documentation process significantly.
The text was updated successfully, but these errors were encountered: