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
Currently, org.springframework.security.core.Authentication is configured to be ignored on Controllers and does not show up on Swagger.
The issue is that if one uses a custom class that implements this interface but also extends its functionalities, one needs to use this custom class as a parameter in a Controller's method. This custom class will not be ignored and will show up on Swagger.
Another possibility would be to simply use @Parameter(hidden = true) but this seems wrong.