maxHttpHeaderSize和content-length之间的差异

时间:2015-07-08 11:03:42

标签: java tomcat httprequest httpresponse

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. 

这两个参数之间是否有任何关系?

1 个答案:

答案 0 :(得分:2)

两者之间没有直接联系。

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

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

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

希望现在的区别很明显。 如果您想更好地了解HTTP协议,请从Hypertext_Transfer_Protocol

开始