如何使用 springdoc-openapi-webflux-ui 显示 app API 文档?
2022-09-03 08:05:43
我读这个 https://springdoc.org/demos.html 使用spreddoc-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-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 文档?
PS:我使用spring.boot 2.2.2:RELEASE