gpt4 book ai didi

spring-boot - 发布请求的最大有效负载大小和 Spring Boot Rest 的获取响应

转载 作者:行者123 更新时间:2023-12-04 16:01:50 24 4
gpt4 key购买 nike

发送帖子有效载荷是否有最大尺寸?

实际上,我有一个服务将 json 有效载荷发送到另一个微服务,在 JSON 有效载荷的一侧,有一个保存编码字符串的文件(基本上我已经将文件转换为编码字符串并将其设置到该有效载荷字段中值(value))。

文件大小不固定,所以我很好奇,是否支持 Post json payload 的最大大小?

我知道 spring-boot 具有以下设置文件上传最大大小的属性。

spring.http.multipart.max-file-size
spring.http.multipart.max-request-size

但正如我所提到的,我不是在上传文件,而是将文件转换为编码字符串,然后将此字符串与 json 有效负载一起发送。

那么如何设置post请求的最大尺寸支持。

此外,在另一种情况下,我正在向微服务发出 Get 请求,然后该微服务返回一个大的有效载荷,接收有效载荷大小是否有任何限制?

最佳答案

这不仅取决于您所指出的 spring 配置,还取决于服务器配置。

大多数服务器都有发布请求加载限制。例如,在 tomcat 中,您可以使用“maxPostSize”属性对其进行配置。引用自 documentation :

The maximum size in bytes of the POST which will be handled by the container FORM URL parameter parsing. 
The limit can be disabled by setting this attribute to a value less than or equal to 0. If not specified, this attribute is set to 2097152 (2 megabytes).

关于spring-boot - 发布请求的最大有效负载大小和 Spring Boot Rest 的获取响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50274386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com