如何在Jetty中更改池线程名称?

时间:2018-08-13 10:26:51

标签: jetty threadpool apache-karaf

我将JettyApache Karaf一起使用,并且我需要更改池线程名称的名称,因为默认情况下它会为它生成一个不友好的随机名称。这怎么可能?我使用Jetty 9Karaf 4.1。我进行了大量搜索,发现在jetty.xml中此配置对我不起作用:

<Call name="addListener">
    <Arg>
      <New class="org.mortbay.http.SocketListener">
        <Set name="port">8080</Set>
        <Set name="minThreads">80</Set>
        <Set name="maxThreads">200</Set>
        <Set name="maxIdleTimeMs">30000</Set>
        <Set name="lowResourcePersistTimeMs">2500</Set>
        <Set name="poolName">Listener</Set>
      </New>
    </Arg>
  </Call> 

0 个答案:

没有答案