[Error] org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException 에러 해결하는 방법 (with yml, properties)
반응형
org.springframework.context.ApplicationContextException:
Failed to start bean 'documentationPluginsBootstrapper';
nested exception is java.lang.NullPointerException
Swagger 관련 에러이다.
Spring boot 2.6 버전 이후에 설정값이
spring.mvc.pathmatch.matching-strategy: ant_apth_matcher => path_pattern_parser
변경되면서 생긴 에러라고 한다. 설정 파일에 이렇게 적어주면 문제가 해결된다.
application.yml
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
application.properties
spring.mvc.pathmatch.matching-strategy=ant_path_matcher
반응형
'Logs' 카테고리의 다른 글
-
[React] 리액트 프로젝트 컴파일, 실행시키는 법 (feat. yarn 설치법, npm)2023.07.09
-
[Error] org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'openApiSchemaPropertyBuilder': Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [springfox.do..2023.06.30
-
[Error] java.sql.SQLNonTransientConnectionException: Cannot load connection class because of underlying exception: com.mysql.cj.exceptions.WrongArgumentException: Malformed database URL, failed to parse the main URL sections. 에러 해결하는 법2023.06.30
-
[Spring boot] MySQL DB 프로젝트에 연동하기 (with AWS RDS, gradle, maven, yml, properties)2023.06.30