在jboss7中,如何设置http和https连接器的线程池大小。我使用standalone.xml来设置更改。任何人都可以帮助我。
先谢谢。
答案 0 :(得分:4)
您可以在standalone.xml中添加max-connections属性,如下所示:
[connector name =“http”protocol =“HTTP / 1.1”scheme =“http”socket-binding =“http” max-connections =“1000” /]
答案 1 :(得分:0)
看看http://www.mastertheboss.com/jboss-application-server/341-jboss-as-7-performance-tuning.html?start=3
答案 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