一行配置解决Springboot2.6与Swagger2.9冲突问题

Springboot整合或升级Swagger2以后出现以下报错

Failed to start bean 'documentationPluginsBootstrapper

网上说在配置类加注解,千万别用!!
@EnableWebMvc
一行配置解决Springboot2.6与Swagger2.9冲突问题_第1张图片

application.properties加入以下代码即可

spring.mvc.pathmatch.matching-strategy=ant_path_matcher

具体原因

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