Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

先展示报错信息。

造成问题的原因:Springfox 假设 Spring MVC 的路径匹配策略是 ant-path-matcher,而 Spring Boot 2.6以上版本的默认匹配策略是 path-pattern-matcher,这就造成了上面的报错。

解决方法:

在 application.yml配置文件中修改mvc的匹配策略:

spring :mvc:pathmatch:matching-strategy: ant-path-matcher