如何通过配置tomcat生成503错误?

时间:2019-01-10 07:23:31

标签: rest tomcat configuration tomcat8

我想通过设置诸如 maxThreads maxConnections acceptCount 的配置属性来配置 Apache Tomcat / 8.5.37 em>等,通过发送一些并发请求(例如一次发送100个请求),我可以在响应REST调用时得到503错误。 该怎么做?

编辑:在某些情况下,我会收到“连接被拒绝” 响应。如何获得状态503而不是“连接被拒绝”

1 个答案:

答案 0 :(得分:1)

server.xml文件中,添加以下部分

<Connector port="8080" protocol="HTTP/1.1"
           maxThreads="10"
           maxConnections="10"
           connectionTimeout="20000"
           redirectPort="8443"
           maxPostSize="209715200" />

有关更多信息,read thisThis的答案也可能有帮助