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 resource, I want to show different pages, based on different roles.
by using target-url I can’t do this.
how can I do this by using Spring security ?
I want to set custom Post-Login Destinations based on user ROLES in my application.
Share
In Spring Security 3.0, you can implement a custom
AuthenticationSuccessHandler(usually by extendingSavedRequestAwareAuthenticationSuccessHandler), and configure<form-login>to use it withauthentication-success-handler-refattribute.