Tôi đọc tài liệu này https://springdoc.github.io/springdoc-openapi-demos/ để sử dụng springdoc-openapi-webflux-ui. Như tài liệu nói tôi vừa thêm springdoc-openapi-webflux-ui
thư viện vào ứng dụng của mình:implementation('org.springdoc:springdoc-openapi-webflux-ui:1.2.26')
Ngoài ra, tôi đã tùy chỉnh đường dẫn đến API trong application.yml:
springdoc:
swagger-ui:
path: /swagger-ui.html
Khi tôi khởi động ứng dụng và truy cập http: // localhost: 8080 / swagger-ui.html , nó sẽ chuyển hướng tôi đến http: // localhost: 8080 / webjars / swagger-ui / index.html? ConfigUrl = / v3 / api -docs / swagger-config . Trong trang đó, tôi đã gặp một lỗi:
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
Câu hỏi là: Tôi có nên thêm cấu hình bổ sung vào ứng dụng của mình để hiển thị tài liệu API không?
PS: Tôi sử dụng spring.boot 2.2.2: LIÊN QUAN