This directory contains three variants of the same hello application:
- classic (RESTEasy classic)
- reactive (RESTEasy reactive)
- reactive with blocking (RESTEasy reactive using a blocking signature)
They all exposed the /hello
endpoint.
These applications are Quarkus applications.
So you can run them in dev mode using mvn quarkus:dev
, or package them using mvn package
.
To run the package, you need to package them, and then run them using: java -jar target/quarkus-app/quarkus-run.jar
The benchmark use wrk
(https://github.com/wg/wrk):
> wrk -t 10 -c50 -d40s http://localhost:8080/hello