在春季会话到期之前执行自定义事件

2022-09-04 01:47:07

我是春季框架的初学者。

在我的情况下,会话可以通过以下方式
过期 --> 成功注销(显式注销)

-->会话超时(隐式注销)

每当某些用户登录时,我就在数据库中执行DML(记录插入),并且每当用户会话超时(隐式注销)时,我想在数据库中执行DML(记录删除)。

我的问题是,在春季有什么办法告诉我们,在会议结束之前。因此,我可以在会话到期之前执行我的自定义事件。

提前致谢


答案 1

是的,你可以使用SessionDestroyedEvent来做到这一点。

@Component
public class SessionEndedListener implements ApplicationListener<SessionDestroyedEvent> {

    @Override
    public void onApplicationEvent(SessionDestroyedEvent event)
    {
        for (SecurityContext securityContext : event.getSecurityContexts())
        {
            Authentication authentication = securityContext.getAuthentication();
            YourPrincipalClass user = (YourPrincipalClass) authentication.getPrincipal();
            // do something
        }
    }

}

在网络中.xml:

<listener>
    <listener-class>
        org.springframework.security.web.session.HttpSessionEventPublisher
    </listener-class>
</listener>

对于常规注销和会话超时,都将触发此事件。


答案 2

我已经通过遵循类似的方式解决了我的问题 @Codo答案

@Component
public class SessionCreatedListenerService implements ApplicationListener<ApplicationEvent> {

private static final Logger logger = LoggerFactory
        .getLogger(SessionCreatedListenerService.class);

@Autowired
HttpSession httpSession;



@Override
public void onApplicationEvent(ApplicationEvent applicationEvent) {
    if(applicationEvent instanceof HttpSessionCreatedEvent){ //If event is a session created event



     }else if(applicationEvent instanceof HttpSessionDestroyedEvent){ //If event is a session destroy event
        // handler.expireCart();

         logger.debug(""+(Long)httpSession.getAttribute("userId"));

         logger.debug(" Session is destory  :" ); //log data

     }else if(applicationEvent instanceof AuthenticationSuccessEvent){ //If event is a session destroy event
         logger.debug("  athentication is success  :" ); //log data
     }else{
         /*logger.debug(" unknown event occur  : " Source: " + ); //log data
     }  
}   
}

推荐