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>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…