1
vote
How to choose the max thread count for an HTTP servlet container?
No there is not. Keep you number of threads limited and under control so you not exceed system resources, Java's limit is usually around 100-200 live threads.
Good way to do it is by using …
