我有一个新的 Intellij Idea UI(我申请了测试),但我想移回旧的,但找不到一种方法来做到这一点。如何禁用新的 UI?
版本:2022.2.1
我收到了DataBufferLimitException对 HTTP 请求的响应。我在用spring-boot-starter-parent:2.5.0,spring-cloud.version:2020.0.2。我几乎已经尝试了此处描述的所有选项(DataBufferLimitException: Exceeded limit on max bytes to buffer webflux error)和此处(configure spring.codec.max-in-memory-size When using ReactiveElasticsearchClient),但没有成功。还有什么我可以尝试的吗?这是我创建网络客户端的代码:
private WebClient buildWebClient(long custId) {
return WebClient.builder()
.clientConnector(createWebClientWithTimeout())
// Add base url to all requests (callers only need to add the path and query params)
.baseUrl(baseUrl)
// Filter to add bearer token to auth header before sending request
.filter((request, next) -> getToken(custId).map(setAuthHeader(request)).flatMap(next::exchange))
// Filter to send the request, and try again if it has …Run Code Online (Sandbox Code Playgroud)