Creating a Thread Pool with Java This article shows you how to create a thread pool in Java. A complete thread pool is included with this article. This thread pool is extensible enough to be added to your own programs to add thread pool functionality. This article will focus on how the thread pool was created and how it is used. in Development > Java > Thread programmingwith developmentjavapoolthread
Java theory and practice: Thread pools and work queues One of the most common questions posted on our Multithreaded Java programming discussion forum is some version of "How do I create a thread pool?" In nearly every server application, the question of thread pools and work queues comes up. In this article, Brian Goetz explores the motivations for thread pools, some basic implementation and tuning techniques, and some common hazards to avoid. in Development > Java > Thread programmingwith developmentjavamultithreadedpool