I want to add object to HttpSession
after successful user authentication. Please don't suggest solution with SavedRequestAwareAuthenticationSuccessHandler
because in this app for some reason application are ingnoring original request.
public class AuthenticationSuccessListener implements ApplicationListener<InteractiveAuthenticationSuccessEvent> {
@Override
public void onApplicationEvent(InteractiveAuthenticationSuccessEvent e) {
//adding object to HttpSession
}
}