user1354825
user1354825

Reputation: 1541

How long are requests stored in apache tomcat request queue?

Is there a timeout setting for requests stored in the apache tomcat request queue? If yes, what is the default value for the embedded tomcat in spring boot?

Upvotes: 1

Views: 328

Answers (1)

Geeth
Geeth

Reputation: 554

When configuring a web server, it also might be useful to set the server connection timeout. This represents the maximum amount of time the server will wait for the client to make their request after connecting before the connection is closed. You may specify this property in your application.properties as follows.

server.connection-timeout=5s

Upvotes: 1

Related Questions