我需要知道Spring MVC中的Response.Clear和Response.ClearContent是什么。
答案 0 :(得分:5)
Response.Clear()
调用Response.ClearContent()
(只是同一个函数的更匹配的名称)。没有区别。除了标题信息之外,两者都清除了响应流。
public void Clear ()
{
ClearContent ();
}
public void ClearContent ()
{
output_stream.Clear ();
content_length = -1;
}