Apache tomcat server.xml中的maxHttpHeaderSize和HttpServletRequest / HttpServletResponse中的content-length有什么区别?

    maxHttpHeaderSize  -  The maximum size of the request and response HTTP header, specified in bytes. If not specified, this attribute is set to 4096 (4 KB).

content-Length  -The Content-Length entity-header field indicates the size of the entity-body, in decimal number of OCTETs, sent to the recipient or, in the case of the HEAD method, the size of the entity-body that would have been sent had the request been a GET.


这两个参数之间有什么关系?

最佳答案

两者之间没有直接连接。

content-length是HTTP header field,用于指定请求主体的长度(以八位字节(8位字节)为单位)。它是所有HTTP请求的常规字段,与Apache Tomcat没有特定连接。

maxHttpHeaderSize字段是Apache Tomcat配置文件中的配置字段-限制服务器发送/接收的任何HTTP标头的大小(出于安全性或网络优化的原因,我认为是这样)。

HttpServletRequest / HttpServletResponse是用于为HTTP Servlet提供请求信息的接口:
例如,您可以使用它来获取已发送/已接收的HTTP请求的CONTENT_LENGTH的信息。

希望现在区别清楚了。
如果您想更好地理解HTTP协议,请从Hypertext_Transfer_Protocol开始

10-05 23:01
查看更多