我想了解在JBoss / WildFly服务器上运行的Web应用程序中read-timeout
的功能。
以下是standalone.xml文件中执行的更改:
<http-listener name="default" socket-binding="http" redirect-socket="https" read-timeout="20000"/>
此外,如果没有明确提及属性的默认值是什么?
答案 0 :(得分:0)
配置套接字的读取超时,以毫秒为单位。如果给定 没有成功阅读的时间流逝, socket的下一次读取将抛出{@link ReadTimeoutException}。
它还说它是Nillable所以我不知道是否为null,野蛮行为如何。