나는 springdoc-openapi-webflux-ui를 사용하기 위해 https://springdoc.org/demos.html 을 읽었다. 설명서에 따르면 방금 springdoc-openapi-webflux-ui
내 앱에 라이브러리를 추가했습니다.implementation('org.springdoc:springdoc-openapi-webflux-ui:1.2.26')
또한 application.yml에서 API 경로를 사용자 정의했습니다.
springdoc:
swagger-ui:
path: /swagger-ui.html
앱을 시작하고 http://localhost:8080/swagger-ui.html로 이동하면 http://localhost:8080/webjars/swagger-ui/index.html?configUrl=/v3/api로 리디렉션됩니다. -docs/swagger-config. 해당 페이지에서 오류가 발생했습니다.
Whitelabel Error Page
This application has no configured error view, so you are seeing this as a fallback.
Mon Jan 20 05:16:10 UTC 2020
[7192d9dc] There was an unexpected error (type=Not Found, status=404).
No matching handler
질문: API 문서를 표시하려면 내 앱에 추가 구성을 추가해야 합니까?
추신: 나는 spring.boot 2.2.2:RELEASE를 사용합니다.