「通常の」方法で tomcat を停止または再起動すると、処理中の http リクエストはどうなりますか? 応答が終了するまで処理されますか、それとも http スレッドが中断されますか? グレースフル停止を設定する方法はありますか?
質問する
7266 次
2 に答える
16
Tomcat はunloadDelay
、サーブレットをアンロードするために構成された時間まで待機するものをサポートしています。
これは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 に答える