how to get username or UserDetail object in logout-success-url? Below is my configuration,
<form-login default-target-url="/security/loginSuccess.action" always-use-default-target="false" authentication-failure-url="/security/loginFailed.action"
login-page="/security/restrictUser.action"/>
<logout invalidate-session="true" logout-success-url="/security/logoutUser.action" />
<session-management session-authentication-strategy-ref="customMsgAwareConcurrentSessionControlStartegy" invalid-session-url="/security/logoutUser.action"/>
I want to get the username who has requested for logout within logout-success-url (for me it is a Struts 2 action method). I have checked SecurityContextHolder, but it seems that SecurityContextHolder is cleared when the control reaches my action method in logout-success-url.