HTTP连接池

时间:2013-02-25 13:17:10

标签: spring tomcat connection-pooling

我需要在Tomcat服务器上的Spring应用程序中设置HTTP连接池。

我们正在讨论是在应用程序级别还是在服务器级别定义池(applicationContext.xml vs server.xml)。

我的问题是:我看了,我看了,但我找不到任何关于这方面的信息。

目前,我正在课堂上与org.apache.http.impl.conn.PoolingClientConnectionManager合作,而且工作正常。

我如何能够在Java代码之外定义池并从那里开始使用它?

1 个答案:

答案 0 :(得分:0)

以下是您要为tomcat 7寻找的配置参考: http://tomcat.apache.org/tomcat-7.0-doc/config/http.html#Standard_Implementation

以下是关于同一主题的另一篇SO帖子:How to increase number of threads in tomcat thread pool?