Hilla: Modern web framework for Java
hilla.dev
Hilla: Modern web framework for Java
1–10 of 11 posts
Re: Hilla: Modern web framework for Java
#2If 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
#3I 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.
Re: Hilla: Modern web framework for Java
#4I 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.
What do you use instead of JPA/Hibernate?
Re: Hilla: Modern web framework for Java
#5I 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...
Re: Hilla: Modern web framework for Java
#6So many projects seem to explain themselves by throwing “modern” in there somewhere.
Re: Hilla: Modern web framework for Java
#7Re: Hilla: Modern web framework for Java
#8Re: Hilla: Modern web framework for Java
#9Re: Hilla: Modern web framework for Java
#10Any kotlin support?