3 Replies Latest reply on Jul 19, 2018 12:38 AM by sagardosi

    How to configure the http-thread-pool and modify the name in wildfly-8.0.0.Final ?

    kobe_fans

      Hi ,

      I met a configuration related question . I try to configure the "http-thread-pool" in the configuration of standalone.xml . I find the subsystem of ejb3 , Add the configuration as flowing :

      <subsystem xmlns="urn:jboss:domain:ejb3:2.0">

      ........

      ........

      <remote connector-ref="http-remoting-connector" thread-pool-name="worker"/>

                  <thread-pools>

                       <thread-pool name="worker">

                          <max-threads count="20"/>

                          <keepalive-time time="100" unit="milliseconds"/>

                      </thread-pool>

                      <thread-pool name="default">

                          <max-threads count="10"/>

                          <keepalive-time time="100" unit="milliseconds"/>

                  </thread-pool>

      ........

      </subsystem>

      But it not works . Of course, I also tried more other methods but all failed .

      I just want to get the thead name when I deploy a war application in Wildfly and access application . Now when i access my application , I just get the flowing thead name :

      a.bmp

      So , How do i should configure the standalone.xml that i can change the default worker-thread-name ?

      Thanks

       

      --liuzhihong