I have a LoggingListener bean that also accepts AuthenticationSuccessEvent's
is there a way i can reach the HttpServletRequest that resulted into this successfull authentication ? i d like to log the ip of the user.PHP Code:public void onApplicationEvent(ApplicationEvent appEvent) {
if(appEvent instanceof AuthenticationSuccessEvent){
AuthenticationSuccessEvent event = (AuthenticationSuccessEvent) appEvent;
Authentication auth = event.getAuthentication();


