3 Replies Latest reply on May 28, 2013 8:47 AM by dmlloyd

    How can I access to thread pool of jboss container in web application?

    liverpoolilove

      I'm using jboss7. I add the following configuration in standalone.xml


      <subsystem xmlns="urn:jboss:domain:threads:1.1">

      <thread-factory name="my_tf" group-name="group1" thread-name-pattern="my_tf_" priority="1"/>

      <bounded-queue-thread-pool name="http_queue" allow-core-timeout="true">

      <core-threads count="100"/>

      <queue-length count="50"/>

      <max-threads count="2048"/>

      <keepalive-time time="30" unit="seconds"/>

      <thread-factory name="my_tf"/>

      </bounded-queue-thread-pool>

      </subsystem>


      How can I access to this "http_quere" in web application.