public class AuthenticationSuccessHandlerImpl extends SimpleUrlAuthenticationSuccessHandler {
@Override
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication)
throws IOException, ServletException {
}
}
configurations:
<beans:bean id="authSuccessHandler"
class="your.pachage.decleration.AuthenticationSuccessHandlerImpl"/>
source
share