|
6 years ago | |
---|---|---|
.. | ||
conf | 6 years ago | |
public | 6 years ago | |
src | 6 years ago | |
README.md | 6 years ago | |
benchmark_config.json | 6 years ago | |
jooby2-jetty.dockerfile | 6 years ago | |
jooby2-undertow.dockerfile | 6 years ago | |
jooby2.dockerfile | 6 years ago | |
pom.xml | 6 years ago |
Jooby the modular micro web framework for Java and Kotlin.
public class App extends Jooby {
{
get("/", ctx -> "Hello, World!");
}
}
This is the Jooby portion of a benchmarking test suite comparing a variety of web development platforms.
http://localhost:8080/plaintext
http://localhost:8080/json
http://localhost:8080/db
http://localhost:8080/queries
http://localhost:8080/updates
http://localhost:8080/fortunes
mvn clean package -P netty
mvn clean package -P undertow
mvn clean package -P jetty
java -jar target/jooby-2x.jar