我想HttpSession
在成功的用户身份验证后添加对象。请不要建议解决方案,SavedRequestAwareAuthenticationSuccessHandler
因为在此应用程序中出于某种原因应用程序忽略了原始请求。
public class AuthenticationSuccessListener implements ApplicationListener<InteractiveAuthenticationSuccessEvent> {
@Override
public void onApplicationEvent(InteractiveAuthenticationSuccessEvent e) {
//adding object to HttpSession
}
}