SpringBoot2.6.6+Swagger3.0.0接口列表不显示解决方案

SpringBoot2.6.6+Swagger3.0.0接口列表不显示解决方案

# 这是因为Springfox使用的路径匹配是基于AntPathMatcher的
# 而Spring Boot 2.6.X使用的是PathPatternMatcher。
spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

你可能感兴趣的:(java,java,spring)