swagger ui未显示任何剩余资源

时间:2019-04-29 22:34:05

标签: spring-boot swagger swagger-ui

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

以下示例- https://github.com/TechPrimers/spring-boot-swagger-example

试图查看基本操作是否正确,一切看起来都还好。 还要更改代码

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

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

1 个答案:

答案 0 :(得分: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());
}