7 ms·
I mean you do realize that many complex web apps use multiple frameworks for different things, right? Personally I don't like Java and haven't used spring, but
by MathCodeLove 4y ago
I mean you do realize that many complex web apps use multiple frameworks for different things, right? Personally I don't like Java and haven't used spring, but take a modern web app and you could be using something like express/fastify, react + next, an ORM, a schema validator, and quite a bit of other domain specific pieces of functionality.
Ofc these aren't all "frameworks" in the traditional sense, but that line is often arbitrary and I think this interpretation of OP's usage of the word is the most generous one.
- stefan_ 4y agoSure, you use a lot of frameworks - in parallel. But that's not what happens in Spring land. Instead, you get one framework (Spring) offering you an abstraction behind which another framework lurks, for things as large as say an ORM. Something that complex can of course not be hidden behind mere 1000s of Java interfaces, it all leaks horrendously and you find yourself "reaching through" the layers.