Is there a way i can remove the "basic-error-controller" from springfox swagger-ui?
Picture:
You can restrict the request handler selector to scan only the package of your project:
return new Docket( DocumentationType.SWAGGER_2) .select() .apis( RequestHandlerSelectors.basePackage( "your package" ) ) ...
2.1m questions
2.1m answers
60 comments
57.0k users