Jooby is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server.
Java:
importstaticio.jooby.Jooby.runApp;
publicclassApp {
publicstaticvoidmain(finalString[] args) {
runApp(args, app -> {
app.get("/", ctx -> "Welcome to Jooby!");
});
}
}Kotlin:
importio.jooby.runAppfunmain(args:Array<String>) {
runApp(args) {
get ("/") {
"Welcome to Jooby!"
}
}
}
Documentation is available at https://jooby.io
| Logo | Sponsor |
|---|---|
| @tipsy |
- v3: Documentation and source code
- v2: Documentation and source code
- v1: Documentation and source code