Spring Boot2.6以上与Swagger2冲突的问题解决

因是在springboot2.6.0中将SpringMVC 默认路径匹配策略从AntPathMatcher 更改为PathPatternParser,导致出错

Spring Boot2.6以上与Swagger2冲突的问题解决_第1张图片

 

解决办法是切换回原先的AntPathMatcher

解决方式:
spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

Spring Boot2.6以上与Swagger2冲突的问题解决_第2张图片

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