게으름을 위한 부지런한 게으름뱅리' 블로그

[Swagger] swagger-ui.html 404 not found이슈 본문

IT

[Swagger] swagger-ui.html 404 not found이슈

LazismLee 2021. 2. 2. 12:31
반응형

♬ Swagger(스웨거)란?

스웨거(Swagger)는 개발자가 REST 웹 서비스를 설계, 빌드, 문서화, 소비하는 일을 도와주는 대형 도구 생태계의 지원을 받는 오픈 소스 소프트웨어 프레임워크이다. 대부분의 사용자들은 스웨거 UI 도구를 통해 스웨거를 식별하며 스웨거 툴셋에는 자동화된 문서화, 코드 생성, 테스트 케이스 생성 지원이 포함된다.

 


swagger 설정 버전 정보

						.
						.
						.
dependencies {
	implementation('io.springfox:springfox-swagger2:3.0.0-SNAPSHOT')
	implementation('io.springfox:springfox-swagger-ui:3.0.0-SNAPSHOT')
	implementation('io.springfox:springfox-spring-webflux:3.0.0-SNAPSHOT')
}
						.
						.
						.

 

3.0.0-SNAPSHOT 버전에서 
http://{$HOST}:{$PORT}/swagger-ui.html 호출 시 404 not found 페이지가 나와서 찾아보니 경로가 변경됬었네요.

 

github.com/springfox/springfox/issues/3360

 

404 when for snapshot version of springfox-swagger-ui 3.0.0-SNAPSHOT · Issue #3360 · springfox/springfox

Hello I am getting a 404 while access the swagger UI ... What's the problem How Can I resolve issue?

github.com

swagger-ui.html 에서 swagger-ui/index.html 로 호출하면 정상으로 페이지 확인 가능합니다.

반응형
Comments