在jboss7中,如何为http和https连接器设置线程池大小。我使用standalone.xml进行设置更改。有谁能帮帮我吗?
您可以像这样在standalone.xml中添加max-connections属性:
[connector name="http" protocol=" http/1.1" scheme="http" socket-binding="http" max-connections="1000"/]
看这里http://www.mastertheboss.com/jboss-application-server/341-jboss-as-7-performance-tuning.html?start=3
在独立xml中定义新的线程工厂和线程池执行器。详情请参阅以下网站:https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/6.3/html/Administration_and_Configuration_Guide/sect-Connector_Configuration.html
我也有类似的问题,参考我的SO问题和答案
您可以使用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