Class MongoIndexedSessionRepository
java.lang.Object
org.springframework.session.data.mongo.MongoIndexedSessionRepository
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationEventPublisherAware,org.springframework.session.FindByIndexNameSessionRepository<MongoSession>,org.springframework.session.SessionRepository<MongoSession>
- Direct Known Subclasses:
MongoOperationsSessionRepository
public class MongoIndexedSessionRepository
extends Object
implements org.springframework.session.FindByIndexNameSessionRepository<MongoSession>, org.springframework.context.ApplicationEventPublisherAware, org.springframework.beans.factory.InitializingBean
Session repository implementation which stores sessions in Mongo. Uses
AbstractMongoSessionConverter to transform session objects from/to native Mongo
representation (DBObject). Repository is also responsible for removing expired
sessions from database. Cleanup is done every minute.- Since:
- 2.2.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringthe default collection name for storing session.static final intThe default time period in seconds in which a session will expire.Fields inherited from interface org.springframework.session.FindByIndexNameSessionRepository
PRINCIPAL_NAME_INDEX_NAME -
Constructor Summary
ConstructorsConstructorDescriptionMongoIndexedSessionRepository(org.springframework.data.mongodb.core.MongoOperations mongoOperations) -
Method Summary
Modifier and TypeMethodDescriptionvoidvoiddeleteById(String id) findByIndexNameAndIndexValue(String indexName, String indexValue) Currently this repository allows only querying againstPRINCIPAL_NAME_INDEX_NAME.voidsave(MongoSession session) voidsetApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher eventPublisher) voidsetCollectionName(String collectionName) voidsetMaxInactiveIntervalInSeconds(Integer maxInactiveIntervalInSeconds) voidsetMongoSessionConverter(AbstractMongoSessionConverter mongoSessionConverter) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.session.FindByIndexNameSessionRepository
findByPrincipalName
-
Field Details
-
DEFAULT_INACTIVE_INTERVAL
public static final int DEFAULT_INACTIVE_INTERVALThe default time period in seconds in which a session will expire.- See Also:
-
DEFAULT_COLLECTION_NAME
the default collection name for storing session.- See Also:
-
-
Constructor Details
-
MongoIndexedSessionRepository
public MongoIndexedSessionRepository(org.springframework.data.mongodb.core.MongoOperations mongoOperations)
-
-
Method Details
-
createSession
- Specified by:
createSessionin interfaceorg.springframework.session.SessionRepository<MongoSession>
-
save
- Specified by:
savein interfaceorg.springframework.session.SessionRepository<MongoSession>
-
findById
- Specified by:
findByIdin interfaceorg.springframework.session.SessionRepository<MongoSession>
-
findByIndexNameAndIndexValue
Currently this repository allows only querying againstPRINCIPAL_NAME_INDEX_NAME.- Specified by:
findByIndexNameAndIndexValuein interfaceorg.springframework.session.FindByIndexNameSessionRepository<MongoSession>- Parameters:
indexName- the name if the index (i.e.FindByIndexNameSessionRepository.PRINCIPAL_NAME_INDEX_NAME)indexValue- the value of the index to search for.- Returns:
- sessions map
-
deleteById
- Specified by:
deleteByIdin interfaceorg.springframework.session.SessionRepository<MongoSession>
-
afterPropertiesSet
public void afterPropertiesSet()- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean
-
setApplicationEventPublisher
public void setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher eventPublisher) - Specified by:
setApplicationEventPublisherin interfaceorg.springframework.context.ApplicationEventPublisherAware
-
setMaxInactiveIntervalInSeconds
-
setCollectionName
-
setMongoSessionConverter
-