我想在用户从会话超时中注销时执行自定义事件。用户在我的 application.properties 指定的时间长度后成功注销:
server.servlet.session.timeout=10
server.servlet.session.cookie.max-age=10
我发现了一些涉及 SessionDestroyedEvent 的类似解决方案,例如:
@Slf4j
@Component
public class SessionExpiredListener implements ApplicationListener<SessionDestroyedEvent> {
@Override
public void onApplicationEvent(SessionDestroyedEvent event) {
for (SecurityContext securityContext : event.getSecurityContexts()) {
Authentication authentication = securityContext.getAuthentication();
UserPrincipal user = (UserPrincipal) authentication.getPrincipal(); // UserPrincipal is my custom Principal class
log.debug("Session expired!" + user.getUsername());
// do custom event handling
}
}
}
问题是 SessionDestroyedEvent 未与会话超时同时触发,在我的测试中,它在会话过期后最多 5 分钟触发。
我也尝试过在 HttpSessionListener 中使用 sessionDestroyed 但结果相似。
是否有一个事件会在会话到期时触发,或者有什么方法可以实现这一点?
森栏
相关分类