jboss 7,如何为http连接器设置线程池大小

时间:2011-08-15 15:31:50

标签: multithreading threadpool jboss7.x

在jboss7中,如何设置http和https连接器的线程池大小。我使用standalone.xml来设置更改。任何人都可以帮助我。

先谢谢。

4 个答案:

答案 0 :(得分:4)

您可以在standalone.xml中添加max-connections属性,如下所示:

[connector name =“http”protocol =“HTTP / 1.1”scheme =“http”socket-binding =“http” max-connections =“1000” /]

答案 1 :(得分:0)

答案 2 :(得分:0)

在独立xml中定义新的线程工厂和线程池执行程序。有关详细信息,请参阅以下网站: https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/6.3/html/Administration_and_Configuration_Guide/sect-Connector_Configuration.html

我有类似的问题,请参阅我的SO question and answer

答案 3 :(得分:0)

您可以使用maxThreads参数进行配置:

<subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false" >

<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" maxThreads="300" />
来自jBoss网站的API文档:

  

maxThread:(int)此池中的最大活动线程数,默认为200