我读了这个https://springdoc.org/demos.html来使用 springdoc-openapi-webflux-ui。正如文档所说,我刚刚将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 -文档/招摇配置。在那个页面中,我收到了一个错误:
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 文档吗?
PS:我使用 spring.boot 2.2.2:RELEASE