관련 코드로 검색을 해보니 SpringBoot 2.6 버전 이후에는 설정이 변경되면서 Swagger를 포함한 라이브러리 몇몇에 오류가 발생한다.
오류메세지
Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException
각 설정에 다음과 같이 추가해주면 된다.
application.properties인 경우
spring.mvc.pathmatch.matching-strategy = ANT_PATH_MATCHER
yaml인 경우인 경우
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher