避免从 swagger api 中的默认基本错误控制器
2022-09-01 16:29:43
我在我的弹簧靴项目中使用了swagger2。它运行良好,但我需要从api中排除。目前,我正在使用正则表达式使用以下代码。它正在工作,但有什么完美的方法来做到这一点。basic-error-controller
法典:
@Bean
public Docket demoApi() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.regex('(?!/error.*).*'))
.build()
}