有什么办法可以从springfox swagger-ui中删除“基本错误控制器”?图片: 最佳答案 您可以将请求处理程序选择器限制为仅扫描项目的程序包: return new Docket( DocumentationType.SWAGGER_2) .select() .apis( RequestHandlerSelectors.basePackage( "your package" ) ) ...