Jooby alternatives and similar libraries
Based on the "Web Frameworks" category.
Alternatively, view Jooby alternatives based on common mentions on social networks and blogs.
-
Spring Boot
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss. -
Takes
True Object-Oriented Java Web Framework without NULLs, Static Methods, Annotations, and Mutable Objects -
ZK
ZK is a highly productive Java framework for building amazing enterprise web and mobile applications -
Firefly
Firefly is an asynchronous web framework for rapid development of high-performance web application. -
Free enterprise Java CMS
DISCONTINUED. Java CMS engine. Host and develop multiple websites inside a single instance through the GUI and benefit from features like A/B testing, affiliate tracking tools, and a high performance template engine with CSS stylesheets processing & scripts minification.
InfluxDB – Built for High-Performance Time Series Workloads

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Jooby or a related project?
Popular Comparisons
README
∞ do more, more easily
Jooby is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server.
Java:
import static org.jooby.Jooby.runApp;
public class App {
public static void main(final String[] args) {
runApp(args, app -> {
app.get("/", ctx -> "Welcome to Jooby!");
});
}
}
Kotlin:
import org.jooby.runApp
fun main(args: Array<String>) {
runApp(args) {
get ("/") {
"Welcome to Jooby!"
}
}
}
documentation
Documentation is available at https://jooby.io
help
donate & support
1.x version
Documentation for 1.x is available at https://jooby.io/v1
Source code for 1.x is available at the 1.x branch
author
license
*Note that all licence references and agreements mentioned in the Jooby README section above
are relevant to that project's source code only.