类 InMemoryWebSessionStore

    • 方法详细资料

      • setMaxSessions

        public void setMaxSessions​(int maxSessions)
        Set the maximum number of sessions that can be stored. Once the limit is reached, any attempt to store an additional session will result in an IllegalStateException.

        By default set to 10000.

        参数:
        maxSessions - the maximum number of sessions
        从以下版本开始:
        5.0.8
      • getMaxSessions

        public int getMaxSessions()
        Return the maximum number of sessions that can be stored.
        从以下版本开始:
        5.0.8
      • setClock

        public void setClock​(Clock clock)
        Configure the Clock to use to set lastAccessTime on every created session and to calculate if it is expired.

        This may be useful to align to different timezone or to set the clock back in a test, e.g. Clock.offset(clock, Duration.ofMinutes(-31)) in order to simulate session expiration.

        By default this is Clock.system(ZoneId.of("GMT")).

        参数:
        clock - the clock to use
      • getClock

        public Clock getClock()
        Return the configured clock for session lastAccessTime calculations.
      • getSessions

        public Map<String,​WebSessiongetSessions()
        Return the map of sessions with an unmodifiable wrapper. This could be used for management purposes, to list active sessions, invalidate expired ones, etc.
        从以下版本开始:
        5.0.8
      • retrieveSession

        public reactor.core.publisher.Mono<WebSessionretrieveSession​(String id)
        从接口复制的说明: WebSessionStore
        Return the WebSession for the given id.

        Note: This method should perform an expiration check, and if it has expired remove the session and return empty. This method should also update the lastAccessTime of retrieved sessions.

        指定者:
        retrieveSession 在接口中 WebSessionStore
        参数:
        id - the session to load
        返回:
        the session, or an empty Mono .
      • removeExpiredSessions

        public void removeExpiredSessions()
        Check for expired sessions and remove them. Typically such checks are kicked off lazily during calls to create or retrieve, no less than 60 seconds apart. This method can be called to force a check at a specific time.
        从以下版本开始:
        5.0.8