0

我正在使用'org.springdoc:springdoc-openapi-webflux-ui:1.2.28'库在我的 spring-boot 应用程序中显示 swagger UI API 文档。http://localhost:8080/swagger-ui.html不起作用,它返回:

Whitelabel Error Page
This application has no configured error view, so you are seeing this as a fallback.

Fri Jan 24 11:31:02 UTC 2020
[b0282788] There was an unexpected error (type=Not Found, status=404).
No matching handler

很快这个问题:How to display app API documentation by using springdoc-openapi-webflux-ui?

我找到了一个原因。Predicate类的字段RouterFunctions.DefaultRouterFunction<T extends ServerResponse>有时会DefaultErrorWebExceptionHandler作为该对象的值:

在此处输入图像描述

4

1 回答 1

1

您可能正在使用@EnableWebFlux。您的描述似乎类似于此问题:

于 2020-02-29T17:07:05.030 回答