当我们使用servlet3规范中提到的AsyncContext时,http连接保持打开多长时间? 我的代码是
final AsyncContext asyncContext = httpServletRequest.startAsync();
asyncContext.setTimeout(0);
asyncContexts.offer(asyncContext);
....
....
new Thread(new Runnable() {
@Override
public void run() {
try {
final BufferedReader read = facade.getStreamData();
while (read.ready()) {
httpServletResponse.setContentType("text/html");
if(i 100) {
asyncContext.complete();
}
if(Strings.isNullOrEmpty(read.readLine())) {
continue;
}
asyncContext.getResponse().getWriter().print(read.readLine());
asyncContext.getResponse().flushBuffer();
i = i + 10;
Thread.sleep(2000);
}
asyncContext.getResponse().getWriter().print("#" + 100);
asyncContext.getResponse().flushBuffer();
asyncContext.complete();
} catch (IOException e) {
throw new RuntimeException(
"Error when writing the event.", e);
} catch (InterruptedException e) {
throw new RuntimeException(
"Error when writing the event.", e);
}
} }).start();
它正在工作!当刷新缓冲区时,客户端可以使用内容。
我的问题是,此连接保持打开状态?以及如果标题中没有提到保持活动,服务器如何管理它?
答案 0 :(得分:0)
我终于得到了答案。 即使没有保持活动标头,服务器也会保持默认保持活动状态。该连接在那段时间内是开放的。 AsyncContext继续扩展连接,直到它被手动关闭,或者它不会将数据发送到客户端超过保持活动(提及或默认)时间。因此,基本上它在客户端表现为非常慢的网络连接。