1.遇到的问题
使用springboot 2.7.2 和 swagger springfox2.92 造成的版本兼容问题
问题1.运行程序的时候直接报错,报错内容是
org.springframework.context.ApplicationContextException: Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException
问题2.出现下图
解决方法:
直接在配置文件中 加入 spring.mvc.pathmatch.matching-strategy=ant_path_matcher
原因是: Spring MVC 的路径匹配策略是ant-path-matcher
Spring Boot 2.6 及以上版本的默认匹配策略是path-pattern-matcher
这样可以将 Spring MVC 的路径匹配策略更改为ant-path-matcher,以兼容 Springfox 的要求。