SpringBoot集成swagger后出现: Failed to start bean ‘documentationPluginsBootstrapper‘的解决方法

最近在部署swagger2的时候总是发现总是报Failed to start bean ‘documentationPluginsBootstrapper‘的错误,看了网上的文档说是springboot版本太高导致的问题,降低版本可以解决问题,虽然能够解决问题,但却不是最后方案: Spring Boot 2.6.X使用PathPatternMatcher匹配路径,Swagger引用的Springfox使用的路径匹配是基于AntPathMatcher的,添加配置spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER

image-20220311212853698
image-20220311212916767
image-20220311213043949

你可能感兴趣的:(SpringBoot集成swagger后出现: Failed to start bean ‘documentationPluginsBootstrapper‘的解决方法)