I wondered how many request a simple hello world endpoint would be able to serve with Spring Boot out of the box.
By default Spring Boot uses Tomcat and the setting server.tomcat.threads.max defines the number of threads available for concurrent request handling. By default up to 200 threads can handle requests.
I used my playground application for the tests. My hardware: Dell XPS 13 9343 with 8 GiB memory and a core i7-5500U.
[Read More]