Of course if you never needed the stuff in Spring Boot you are better off with a lightweight framework. The question is what do you do when you need the stuff. And Spring Boot has answer for pretty much any server-side need. I really like how autoconfiguration works for example.
☝️ 2
👍 4
n
niklas
06/18/2018, 1:03 PM
True, and they very cleverly sell stuff as something that you get only with Spring, when it is actually sometimes a thin wrapper over something existing. Take
@Scheduled
for example which has just one real implementation based on Quartz.
niklas
06/18/2018, 1:07 PM
What I like about the jooby approach is that things are not hidden below a layer of abstraction but accessible directly, while still easily configured into the application: https://jooby.org/modules/