我想在Swagger ui中显示两个REST API端点:/ cart和/ post。
当我指定/ cart或/ post工作正常但两者都显示错误为
规范中没有定义任何操作!
in swagger-ui
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.ant("/cart"))
.paths(PathSelectors.ant("/post"))
.build();
}
答案 0 :(得分:0)
另一种选择是使用 .paths(PathSelectors.any()) 而不是 .paths(PathSelectors.ant("/cart" )) 和 .paths(PathSelectors.ant("/post"))