I want to set custom Post-Login Destinations based on user ROLES in my application. for example :
If a form login isn\'t prompted by an attempt to access a protected resourc
In Spring Security 3.0, you can implement a custom AuthenticationSuccessHandler (usually by extending SavedRequestAwareAuthenticationSuccessHandler), and configure <form-login> to use it with authentication-success-handler-ref attribute.