Earlier quoted context omitted.
Hard disagree on needing a DI library, manual DI is great.
Disagree on using a lib? cause I guess doing manual DI is still DI.
Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
71–80 of 139 posts
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#72Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#73How does the dev tooling work? Rebuild & restart the app each time? I find working on any sizable codebase this can take minutes even on the latest spring-boot. Quakrus has an interesting live reloading classloader.
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#74Earlier quoted context omitted.
just wondering, what did you use SQLite for on a wedding website?
It's been SOP for some time (at least 20 years) to use an RDBMS to store your site's content and write a stateless application server to pull data from it and compose a response. Call it the "CMS pattern". Static site generation, and a few other ideas, challenges this basic pattern, but most of the worlds applications use it. Javelin is trying to make the pattern better on several axes, simplicity first-and-foremost,…
And (in the Java/enterprise world) is completely correct.
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#75This looks really nice! I wish more Java devs approached things with KISS and simple in mind, rather than looking at every problem as a way to apply some obscure design pattern that involves 15 levels of abstraction and indirection for a relatively simple microservice.
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#76Javalin is great and a worthy successor to its predecessor Sparkjava
Edit: looks like its alive and kicking : https://sparkjava.com/news
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#77How does the dev tooling work? Rebuild & restart the app each time? I find working on any sizable codebase this can take minutes even on the latest spring-boot. Quakrus has an interesting live reloading classloader.
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#78Though I ended up leaning towards KTor, with Javalin as a close second.
How would anyone with more knowledge compare the two (Javalin and KTor)?
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#79Earlier quoted context omitted.
For a website, the question should be why not use SQLite. Given the various compelling and (by now, here, I hope) well-understood advantages, it should be the default choice. Certainly for a site expecting hits in the mid-hundreds, total. Maybe ten simultaneous connections the day of?
Interesting, I interpreted the question completely differently, i.e. why use database at all? FWIW, I'm not in the web app world, so my wedding website was a single page HTML; not a single page app, let alone a content management system - I googled something like "Wedding page HTML template", then grabbed a HTML template from w3schools, opened it in notepad, and put my own words and IMG tags. It looked pretty, was "r…
Re: Show HN: I finished v5 of a JVM framework I've spent spent half a decade making
#80Congratulations! This is great! Java deserves its comeback among the wave of nu-programming we are going through.
What is nu-programming? And why would Java deserve a comeback?