-
Could anyone tell me how to group REST API OAS 3 like SpringBoot GroupOpenApi? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I understand that it is very late, but I will still write an answer so that it is clear to everyone. Versioning support has already been implemented and described in the documentation https://micronaut-projects.github.io/micronaut-openapi/latest/guide/index.html#versions Also, support for different API versions is implemented using If you have questions, suggestions or problems, please create tickets here: https://github.com/micronaut-projects/micronaut-openapi/issues . Discussions are not reviewed regularly and rarely |
Beta Was this translation helpful? Give feedback.
I understand that it is very late, but I will still write an answer so that it is clear to everyone.
Versioning support has already been implemented and described in the documentation https://micronaut-projects.github.io/micronaut-openapi/latest/guide/index.html#versions
Also, support for different API versions is implemented using
@OpenAPIGroup
annotaion. Microsoft OpenAPI has excellent support for grouping endpoints and splitting them into several specifications. Much cooler and more convenient than anywhere elseIf you have questions, suggestions or problems, please create tickets here: https://github.com/micronaut-projects/micronaut-openapi/issues . Discussions are not reviewed regula…