IDEA报错之Failed to start bean ‘documentationPluginsBootstrapper’问题及解决方案

错误行代码:
Cause by:
Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException
错误原因:Springfox使用的路径匹配是基于AntPathMatcher的,而Spring Boot 2.6.X使用的是PathPatternMatcher
解决方案:
1.简单粗暴:升级spring-boot-starter-parent版本

 <parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>2.5.6version>
        <relativePath/> 
    parent>

2.高级感:在application.yaml里配置:spring.mvc.pathmatch.matching-strategy: ANT_PATH_MATCHER
(如果没有的话就在resources里创建一个application.properties,把后缀改成.yaml)

你可能感兴趣的:(intellij-idea,java,spring)