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
The generated path "/default" is wrong and the name of the interface is confusing. Additionally to that the following interface will be generated for the path "/{uuid}":
@Path("/{uuid}")
@Api(description = "the {uuid} API")
...
publicinterfaceUuidApi {
}
Description
When we define our primary resource under path "/" (see declaration file), jaxrs-spec generates the following stub:
The generated path "/default" is wrong and the name of the interface is confusing. Additionally to that the following interface will be generated for the path "/{uuid}":
openapi-generator version
3.2.1-SNAPSHOT
OpenAPI declaration file content or url
Command line used for generation
Maven configuration:
Steps to reproduce
Define some primary resources under path "/" (see example contract) and generate the jaxrs stubs.
Related issues/PRs
Suggest a fix/enhancement
My suggestion is using the tags to grouping the methods into interfaces like jaxrs-cxf.
The text was updated successfully, but these errors were encountered: