前提
Redis版本>2.8
開啟事件通知配置
(默認spring session會自動開啟該配置)
配置文件:notify-keyspace-events Ex
命令行:redis-cli config set notify-keyspace-events Egx
不需要自動開啟該配置的話可以將如下配置加入到容器中
@Bean
public static ConfigureRedisAction configureRedisAction() {
return ConfigureRedisAction.NO_OP;
}
spring boot 自動注入:RedisHttpSessionConfiguration#setImportMetadata方法會注入RedisHttpSessionConfiguration相關(guān)配置
spring session開啟redis事件通知相關(guān)類: RedisHttpSessionConfiguration褐澎、 ConfigureNotifyKeyspaceEventsAction
spring session自動開啟redis事件通知文檔
RedisSession監(jiān)聽配置
@Configuration
public class RedisHttpSessionListenerConfig {
/**
* 監(jiān)聽session創(chuàng)建
*/
@EventListener
public void onCreated(SessionCreatedEvent event) {
String sessionId = event.getSessionId();
// spring-session提供的session
Session session = event.getSession();
System.out.println("創(chuàng)建:" + sessionId);
}
/**
* 監(jiān)聽session刪除
*/
@EventListener
public void onDeleted(SessionDeletedEvent event) {
String sessionId = event.getSessionId();
// spring-session提供的session
Session session = event.getSession();
System.out.println("刪除:" + sessionId);
}
/**
* 監(jiān)聽session過期
*/
@EventListener
public void onExpired(SessionExpiredEvent event) {
String sessionId = event.getSessionId();
// spring-session提供的session
Session session = event.getSession();
System.out.println("過期:" + sessionId);
}
}
原理
在spring-Session中session的創(chuàng)建、刪除伐蒋、過期都會接收到redis相關(guān)事件的通知
spring-session中接收到相關(guān)通知后再由Spring發(fā)布相關(guān)ApplicationEvent(SessionCreatedEvent 工三、SessionDeletedEvent 、SessionExpiredEvent)
由spring-context提供的@EventListener注解即可實現(xiàn)相關(guān)事件的監(jiān)聽
Spring Session官方文檔
將Redis消息轉(zhuǎn)換為Spring的ApplicationEvent實現(xiàn)類:org.springframework.session.data.redis.RedisOperationsSessionRepository
Redis鍵空間通知