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
}
}
As far as I am aware, ApplicationListener
instances are just beans within your ApplicationContext
. Therefore you should be able to inject other beans or resources into them.
So to get a reference to the current HttpSession
instance:
public class AuthenticationSuccessListener implements ApplicationListener<InteractiveAuthenticationSuccessEvent> {
@Autowired
private HttpSession httpSession;
@Override
public void onApplicationEvent(InteractiveAuthenticationSuccessEvent e) {
//adding object to HttpSession
}
}
Spring will inject the HttpSession
using its scoped proxy mechanism ensuring that you get the HTTPSession
relevant to the current thread of execution.
You'll also need to ensure that you register a RequestContextListener
in your web.xml so that Spring can inject the current HTTPSession
.
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With