A HTTP/1.1 server built in Java at the socket level using only the standard library, without Spring, Netty, or frameworks.
- Java 17+
- Maven
Compile and run the server:
mvn compile exec:java -Dexec.mainClass=com.andy.ServerThe server listens on http://localhost:8080.
In a separate terminal:
curl -v http://localhost:8080Run the JMeter test and generate an HTML report:
jmeter -n -t loadtest.jmx -l results.jtl -e -o report/
open report/index.html