What happens to http requests that are being processed when you stop or restart tomcat in the "normal" way? Will they be processed until the response is finished or are the http-threads interrupted? Is there a way to configure graceful stopping?
相关问题
- Angular RxJS mergeMap types
- Google Apps Script: testing doPost() with cURL
- How to instantiate Http service in main.ts manuall
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- Tomcat and SSL Client certificate
相关文章
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- Tomcat的User信息可以存储到数据库中吗?
- tomcat的server.xml支持从Oracle中获取数据吗?
- web项目,Resonse Header发生解析错误,请大牛帮忙看看究竟是哪里的问题?
- Apache+Tomcat+JK实现的集群,如果Apache挂了,是不是整个服务就挂了?
- linux环境部署jpress,创建数据库时提提示连接失败
- Is a unicode user agent legal inside an HTTP heade
- java.lang.NoClassDefFoundError: javax/servlet/http
Tomcat supports
unloadDelay
which waits till the configured time for unloading servlets.This should configured in
context.xml
as follows:References:
IT just kill the request and break the request-response link. And you get..
Unable to connect
That can not be handled.