JVM Language: Java 11+
Webserver: https://javalin.io/
Templating: https://j2html.com/
Enhanced html attributes: https://htmx.org/
Database helper: http://jdbi.org/
Database: Sqlite or Postgres depending on the expected scale.
The startup time is very fast. I usually see times under a second, which makes iterative changes significantly less painful than something like Spring.
Also setup is ridiculously simple, just throw those libraries in a pom file and use a CDN for htmx. No front end build tools needed since htmx removes the need for most if not all of your javascript.
The whole setup feels kind of old school, but man it makes developing CRUD apps dead simple again.
Lastly, project onboarding is as simple as having someone download intelij and pulling the project. The built in maven and jdk to intelij is all they need. That is as long as you don't need them to run their own Dev database instance, but that's not the end of the world if you utilize docker.
Even if you decide on something else take a look at the above libraries, they're all pretty fantastic.
- Database: Postgres or SQLite
- Frontend: None, the backend serves html + js by combining htmx[1] and hiccup[2]
I would consider trading these for faster build times... I heard good things about javalin.
I would definelty use Java. I like it and there are tonns of new features in the 11+ versions. Boilerplate is greatly reduced by Lombok.
I would consider Kotlin for even less boilerplate and null handling.
My understanding is that Micronaut and Spring can be used together [1].
[0] https://micronaut.io/ [1] https://micronaut-projects.github.io/micronaut-spring/latest...
It's a nice mix of simplicity and effectiveness.
If you want performance above all else, Vert.X isn't too hard to use. But the async API's are a PITA, much like ExpressJS.
If a CMS solution is required, LifeRay or Adobe Experience Manager.
Preferably with Oracle as database, and most performance critical queries written in PL/SQL.
Although I am sure this is a not welcomed solution in this side of Internet.
Whichever stack gets you to build your mvp fastest, or the one you already know and enjoy, or the new shiny one you've been dying to try out, or the one your buddy challenged you to use..
They are just tools, which you pick is a matter of preference. Just pick one unless you enjoy spending your time thinking about which to pick rather than get to work and build your project
Sorry for being emotional and slightly off topic, but why would you fire a cannon at sparrows?
“Today” some things changed, new more team-scalable and simple languages matured. Old one got more performant and stable (like nodejs, ruby etc).
What’s there in CRUD that you win with jvm?