JBossWeb WildFly Subsystem Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 16: Line 16:
<pre>
<pre>
...
...
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" executor="http-thread-pool" />
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" executor="http-thread-pool"/>
...
...
</pre>
</pre>

Revision as of 21:55, 8 June 2016

Internal

Thread Pool Configuration

A thread pool must be configured in the "threads" subsystem, as described here:

WildFly Threads Subsystem Configuration

Once the thread pool has been configured, it can be plugged into the HTTP connector as follows:

...
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" executor="http-thread-pool"/>
...