有人可以告诉我这些WebLogic设置的Tomcat等价物是什么:
答案 0 :(得分:1)
假设您正在讨论HTTP请求而不是JDBC连接,通常这些是Tomcat连接器中的设置,可在server.xml中配置:
https://tomcat.apache.org/tomcat-8.0-doc/config/http.html
您要查找的具体值是:
connectionTimeout
socket.soKeepAlive
结果时间限制比较棘手。你需要一个阀门才能做到这一点。参见:
http://tomcat.apache.org/tomcat-8.0-doc/config/valve.html#Stuck_Thread_Detection_Valve
<Context ...>
...
<Valve
className="org.apache.catalina.valves.StuckThreadDetectionValve"
threshold="60" />
...
</Context>