标签: rest tomcat configuration tomcat8
我想通过设置诸如 maxThreads , maxConnections , acceptCount 的配置属性来配置 Apache Tomcat / 8.5.37 em>等,通过发送一些并发请求(例如一次发送100个请求),我可以在响应REST调用时得到503错误。 该怎么做?
编辑:在某些情况下,我会收到“连接被拒绝” 响应。如何获得状态503而不是“连接被拒绝” ?
答案 0 :(得分:1)
在server.xml文件中,添加以下部分
server.xml
<Connector port="8080" protocol="HTTP/1.1" maxThreads="10" maxConnections="10" connectionTimeout="20000" redirectPort="8443" maxPostSize="209715200" />
有关更多信息,read this。 This的答案也可能有帮助