swagger 적용 중 (gradle) ApplicationContextException 에러

Yunny.Log ·2022년 11월 7일
0

Debugging

목록 보기
51/69
post-thumbnail
post-custom-banner

org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:181) ~[spring-context-5.3.23.jar:5.3.23]

원인 : 스프링부트 버전 문제

  • The default strategy for matching request paths against registered Spring MVC handler mappings has changed from AntPathMatcher to PathPatternParser.
  • 등록된 Spring MVC 핸들러 매핑에 대해 요청 경로를 일치시키는 기본 전략이 AntPathMatcher에서 PathPatternParser로 변경되었습니다.

해결 방법

build.gradle 에 아래 설정 추가해줌으로써 기본 전략을 변경해주면 ok


spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher
      
post-custom-banner

0개의 댓글