15

当您以“正常”方式停止或重新启动 tomcat 时,正在处理的 http 请求会发生什么?它们会被处理直到响应完成还是http线程被中断?有没有办法配置优雅停止?

4

2 回答 2

16

Tomcat 支持unloadDelay等待配置的时间来卸载 servlet。

这应该配置context.xml如下:

<context unloadDelay="10000">

参考:

于 2012-06-22T10:51:09.147 回答
1

IT 只是终止请求并断开请求-响应链接。你得到..

无法连接

  Browser can't establish a connection to the server at Host:port.

  The site could be temporarily unavailable or too busy. Try again in a few moments.
  If you are unable to load any pages, check your computer's network connection.
  If your computer or network is protected by a firewall or proxy, make sure that Browser is permitted to access the Web.

那是不能处理的。

于 2012-06-22T10:38:15.153 回答