6 ms·
Hilla: Modern web framework for Java
- pixel_tracing 5y agoAny kotlin support?
- henning 5y agoIf 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".
- foobar4u 5y agoHahaha... I guess Vaadin's marketing team is at it again. This is just re-branded Vaadin all over again trying to sell a product nobody wants and it is not even their own. This is just Spring Boot + Custom typescript cobbled together and called a framework. It is hardly modern by any standards and frankly a bad idea to build web-apps that locks the users this way. Please take your marketing bs somewhere else.
- karmakaze 5y agoI 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.
- azth 5y agoWhat do you use instead of JPA/Hibernate?
- silentprog 5y agoJdbi is also really good.
- panick21_ 5y agoJOOQ
- soco 5y agoI use JOOQ in places as well and it's a great tool but it definitely doesn't do what JPA/Hibernate do. Different use cases...
- invalidname 5y agoSpring 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...
- fmakunbound 5y agoSo many projects seem to explain themselves by throwing “modern” in there somewhere.