读取超时属性的功能是什么?
What is the functionality of read-timeout attribute?
我想了解 read-timeout
在 JBoss / WildFly 服务器上的 Web 应用程序 运行 中的功能。
以下是在 standalone.xml 文件中进行的更改:
<http-listener name="default" socket-binding="http" redirect-socket="https" read-timeout="20000"/>
另外,如果没有明确提及,属性的默认值是多少?
Configure a read timeout for a socket, in milliseconds. If the given
amount of time elapses without a successful read taking place, the
socket's next read will throw a {@link ReadTimeoutException}.
它还说它是 Nillable 所以我不知道如果为 null,wildfly 的行为如何。
我想了解 read-timeout
在 JBoss / WildFly 服务器上的 Web 应用程序 运行 中的功能。
以下是在 standalone.xml 文件中进行的更改:
<http-listener name="default" socket-binding="http" redirect-socket="https" read-timeout="20000"/>
另外,如果没有明确提及,属性的默认值是多少?
Configure a read timeout for a socket, in milliseconds. If the given amount of time elapses without a successful read taking place, the socket's next read will throw a {@link ReadTimeoutException}.
它还说它是 Nillable 所以我不知道如果为 null,wildfly 的行为如何。