英文:
Set Max In Memory Size In Spring Webflux
问题
我在使用WebFlux的Spring Boot应用程序中收到以下错误:
> org.springframework.core.io.buffer.DataBufferLimitException: 超过最大字节缓冲限制:262144
我尝试通过在application.yml
中进行如下设置来限制大小:
spring:
codec:
max-in-memory-size: 10MB
或者通过将以下内容添加到WebClient配置类中,但它们被忽略了。
.exchangeStrategies(ExchangeStrategies.builder()
.codecs(clientCodecConfigurer -> clientCodecConfigurer
.defaultCodecs()
.maxInMemorySize(10 * 1024 * 1024)
)
.build()
)
我使用的是Spring Boot 2.3.3.RELEASE版本。
你有关于可能问题的任何想法吗?
英文:
I am receiving the following error in a Spring Boot application using WebFlux
> org.springframework.core.io.buffer.DataBufferLimitException: Exceeded
> limit on max bytes to buffer : 262144
I tried setting the limit inside application.yml
with
spring:
codec:
max-in-memory-size: 10MB
Or by adding the following to a WebClient configuration class but they are ignored.
.exchangeStrategies(ExchangeStrategies.builder()
.codecs(clientCodecConfigurer -> clientCodecConfigurer
.defaultCodecs()
.maxInMemorySize(10 * 1024 * 1024)
)
.build()
)
I am Using Spring Boot 2.3.3.RELEASE.
Do you have any idea on what the problem might be?
答案1
得分: 2
你可以添加以下配置:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论