우당탕탕

[오류해결]Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException 본문

오류해결

[오류해결]Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

모찌모찝 2023. 1. 18. 13:36

org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

Spring boot 2.6 이후의 버전에서 matching-strategy의 값이 ant_path_matcher에서 path_pattern_parser로 변경되었다.
이러한 과정에서 오류가 발생하고 있는 것이었다.

해결방법으로는 
application.yaml 파일에서는

spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher


application.properties 파일에서는

spring.mvc.pathmatch.matching-strategy=ant_path_matcher

 

과 같이 작성하면 된다.

Comments