좋은 참고자료: https://sharplee7.tistory.com/48
https://velog.io/@gimminjae/Swagger-UI란-왜-사용해야-할까
스프링에서 springdoc-openapi
의존성을 추가하여 swagger-ui를 사용할 수 있다.
계속 white_label발생해서 해결한 방법
https://velog.io/@kjgi73k/Springboot3에-Swagger3적용하기
⇒ https://stackoverflow.com/questions/74614369/how-to-run-swagger-3-on-spring-boot-3
spring-doc github: https://github.com/springdoc/springdoc-openapi
// implementation 'org.springdoc:springdoc-openapi-ui:1.6.14' // swagger ui
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
2번째줄로 주입하면 성공!
다른 부가 옵션 다 지워도됨.
tip
<http://localhost:8080/swagger-ui/index>
에서 아래 주소로 바뀌었음(주의)
<http://localhost:8080/swagger-ui/index.html>
도움 블로그: https://yunwoong.tistory.com/283