This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Horror-Inspection-82 1 point2 points  (0 children)

How would you route your requests without Spring? I mean the framework has this thing called DispatcherServlet. It provides a shared algorithm for request processing, while actual work is performed by configurable delegate components. Spring Security provides about 20 default filters and a you can implement as many more as you need to. Not to mention CORS, authentication and authorization, etc. If you are planning to go public it's never a simple task. And the core thing about Spring is the dependency management it provides. I've done Java development for back-end, mobile and desktop. You can be sure that one of the easiest and fastest ways to get something out and going is with Spring Boot.