Reputation: 931
I am new to Spring Security and am mulling over the idea of using it or not in my application. The requirement is as follows :
I am using Spring MVC,Mongo DB and MySQL as the develeoment environment.
Regards, Abhishek
Upvotes: 1
Views: 112
Reputation: 5070
If you're trying to simply control the flow of an application, I'd suggest using Spring Webflow. This allows you to define set flows in a multi-page application.
Spring Security can be used to control flows, but only for access control. It integrates well with Webflow (and with Spring MVC) to ensure you can secure some or all of your flows.
Upvotes: 1