Well with spring boot you can use spring wrappers but there are always (atleast in my expirience) ways to override their way of doing things or just completely skip their wrapper and just use whatever is under the hood
Because it provides commodity functionality that most developers with Spring experience can understand quicker, along with the Java philosophy of customization over convention.
I don’t like Java or Spring, but I understand their benefits and why people like them.
I don’t understand why people use Spring. Having worked in more than enough Spring projects, your frankly better off without any framework than using Spring.
Thanks for your insight. I agree with your comment about the trade off between the time it takes to fully learn the framework vs the productivity that you will get. I think that’s true for all frameworks. There’s also Javelin if you need something smaller and quick to pick in Java that is similar to Express.js.
Imo if you’re doing Java, you need some inversion of control framework like Spring of Guava. You can’t avoid it especially for larger projects
what I really hate is that it focuses on configuration & customization over convention. At the same time, it is a strength for certain projects and teams.
> Imo if you’re doing Java, you need some inversion of control framework like Spring of Guava. You can’t avoid it especially for larger projects
I completely disagree. I’ve worked on more than my fair share of Spring projects, and as far as I’m concerned, dependency injection frameworks tend to make projects more complex than they need to be. In some ways I think Spring projects end up being much larger than they need to be because of Spring. Not to mention that it turns compile-time checks into incredibly hard-to-debug runtime checks.
Why use Spring Boot at all then?