swagger ui没有显示任何休息资源

问题描述 投票:0回答:1

我无法在swagger UI [http://localhost:8088/swagger-ui.html]中看到任何资源,

接下来的例子 - https://github.com/TechPrimers/spring-boot-swagger-example

试图看到基本包是否正确,一切看起来都没问题..也改变了代码

.apis(RequestHandlerSelectors.any().paths(PathSelectors.any())

期望是显示SwaggerConfig.java中配置的资源

spring-boot swagger swagger-ui
1个回答
1
投票

enter image description here尝试没有正则表达式。

@Bean
public Docket productApi() {
      return new Docket(DocumentationType.SWAGGER_2).
                    select()
                    .apis(RequestHandlerSelectors.any())
                    .paths(PathSelectors.any())
                    .build()
                    .apiInfo(metaInfo());
}
© www.soinside.com 2019 - 2024. All rights reserved.