|
3 years ago | |
---|---|---|
.. | ||
conf | 6 years ago | |
public | 6 years ago | |
src | 4 years ago | |
.gitignore | 6 years ago | |
README.md | 6 years ago | |
benchmark_config.json | 5 years ago | |
config.toml | 4 years ago | |
kooby.dockerfile | 4 years ago | |
pom.xml | 3 years ago |
Jooby the modular micro web framework for Java and Kotlin.
import io.jooby.runApp
fun main(args: Array<String>) {
runApp(args) {
get("/") {
"Hello Kooby!"
}
}
}
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
java -jar target/kooby.jar