How to specify Http Request timeout parameter on Java servlet container

前端 未结 3 1852
花落未央
花落未央 2020-12-07 00:47

I\'m trying to understand where I can configure a request timeout for all requests arriving to a servlet of mine (or all of my servlets)? Is that, as I think, a container pr

3条回答
  •  一向
    一向 (楼主)
    2020-12-07 01:01

    The timeout from a client (i.e. how long it waits for a response to an HTTP request) is determined at the client. For IE, see this, and for Firefox see this.

    You can't control this timeout from the server.

提交回复
热议问题