> On Dec 22, 2016, at 11:31 AM, Christopher Schultz 
> <ch...@christopherschultz.net> wrote:
> 
> In Tomcat 7 there is a setting on the <Engine> component called
> "startStopThreads"[1]. The default is 1 which means that a single
> thread will be used to start/stop applications during
> startup/shutdown, so the behavior you are seeing is expected.
> 
> If you want to use more threads, then you'll need to add/adjust that
> setting. Something like this:
> 
> server.xml
> - ----------
> 
> ...
>   <Engine name="Catalina" defaultHost="localhost"
>      startStopThreads="6">
>   ...
>   </Engine>
> ...
> 
> That setting should use 6 threads and start/stop all your applications
> simultaneously.

Perfect, that’s just what I needed! Thank you!

—Jesse Barnum, President, 360Works

Reply via email to