JAVA/에러

Swagger : http://localhost:8080/swagger-ui/index.html 404 error...

whyHbr 2024. 5. 20. 11:41
728x90
반응형

build.gradle에 

implementation 'org.springdoc:springdoc-openapi-ui:1.7.0'

이렇게 추가하니

http://localhost:8080/swagger-ui/index.html ->  404 발생

 

implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
implementation 'org.springdoc:springdoc-openapi-ui:1.7.0'

이렇게 두 개 추가하니

해결~

 

아마도 스프링부트 버전 3 이상부터 많이 발생하는 에러 같다

728x90