Closed
Description
Describe the feature
Using @BasePathAwareController
does not result in any endpoints generated in the OpenAPI
To Reproduce
- Create a
@BasePathAwareController
-annotated controller - Start app and navigate to generated API Docs
Expected behavior
- Operations defined inside
@BasePathAwareController
get declared in the generated API Docs
Screenshots
Assume there is a base repository rest resource user-profile
declared as @RepositoryRestResource(collectionResourceRel = "profiles", path = "profiles")
. When declaring an extension to the base API using:
@Tag(name = "user-profile-projects", description = "Managing user profile projects")
@RestController
we get:
However, switching to:
@Tag(name = "user-profile-projects", description = "Managing user profile projects")
@BasePathAwareController
where user-profile-projects
is gone.
Additional context
Tried with both 1.5.2 and 1.6.0. This bug probably means @RepostoryRestController
is ignored, too.