Live data from Hacker News

Hilla: Modern web framework for Java

hilla.dev

1–10 of 11 posts

Re: Hilla: Modern web framework for Java

#2
If you put @AllArgsConstructor from Lombok on that PersonEndpoint class, you should be able to remove the boilerplate `public PersonEndpoint(PersonRepository repository) { this.repository = repository; }` constructor entirely since the Lombok annotation will generate it for you. Seems reasonable to do if the point is to show "modern Java".

Re: Hilla: Modern web framework for Java

#5

I don't consider Spring Boot to be modern Java. At least not if it uses JPA/Hibernate which is solving the 1990s problems of enterprise Java apps.

Spring Boot has other options to solve storage from Mongo to JOOQ to cloud storage. I use JPA. Maybe it's because I'm from the 90's and believe in technologies that work...
Post reply on HN