在Jetty 9中更改线程池大小

在Jetty 9中更改线程池大小,第1张

在Jetty 9中更改线程大小

从文档:

服务器实例提供了一个ThreadPool实例,该实例是其他Jetty服务器组件使用的默认执行器服务。线程池的主要配置是最大和最小大小,并在etc /
jetty.xml中设置。

<Configure id="server" >   <Set name="threadPool">    <New >      <Set name="minThreads">10</Set>      <Set name="maxThreads">1000</Set>    </New></Set> </Configure>

要么

QueuedThreadPool threadPool = new QueuedThreadPool(100, 10);Server server = new Server(threadPool);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5489918.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存