[ Problem ]
Swagger UI 라이브러리를 추가후 프로젝트 구동시
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
Failed to start bean 'documentationPluginsBootstrapper';
nested exception is java.lang.NullPointerException
에러가 발생
[ Solution ]
application.yml에
spring: mvc: # SwaggerUI 구동시 에러처리를 위해 작성 pathmatch: matching-strategy: ant-path-matcher
위의 내용을 추가해주면 된다
728x90
반응형
'Dev_Log' 카테고리의 다른 글
[Oracle] ORA-28014: 관리 사용자 또는 롤을 삭제할 수 없습니다. (0) | 2023.02.22 |
---|---|
[SpringBoot] 지원되지 않는 문자 집합(클래스 경로에 orai18n.jar 추가) (0) | 2023.02.17 |
[CentOS8] Failed loading plugin "osmsplugin": No module named 'librepo' (0) | 2022.12.28 |
[SpringBoot] 오류: 기본 클래스 com.example.demo.SpringSchedulerApplication을(를) 찾거나 로드할 수 없습니다. (0) | 2022.12.15 |
[Oracle] TNS-12545: 대상 호스트 또는 개체가 존재하지 않아 연결에 실패했습니다 (0) | 2022.12.08 |