Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
11–20 of 139 posts
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#12Virtual threads in Java 19: https://www.infoq.com/articles/java-virtual-threads/
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#13In either case Loom and frameworks that use it are super exciting! I’m looking forward to removing the 20 different thread pools we need to avoid deadlocks and just using the common one in our Clojure apps.
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#14 public static void main(String[] args) {
var app = Javalin.create(/*config*/)
.get("/", ctx -> ctx.result("Hello World"))
.start(7070);
}Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#15Java deserves its comeback among the wave of nu-programming we are going through.
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#16It looks inspired by express.js, is it the case or are they both inspired by an older framework?
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#17Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#18It looks inspired by express.js, is it the case or are they both inspired by an older framework?
Sinatra, also Ruby, predates Express and is based on Rack (in a similar way to Express, which used to be based on Connect if I’m not mistaken).
I’m not sure what inspired Sinatra, but that’s probably the influence you’re seeing in these frameworks.
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#19Can we use this to render traditional apps (no js frameworks)?
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#20Kudos.