Package org.eclipse.jetty.server.session
Class JDBCSessionDataStore
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.util.component.ContainerLifeCycle
-
- org.eclipse.jetty.server.session.AbstractSessionDataStore
-
- org.eclipse.jetty.server.session.JDBCSessionDataStore
-
- All Implemented Interfaces:
SessionDataMap,SessionDataStore,org.eclipse.jetty.util.component.Container,org.eclipse.jetty.util.component.Destroyable,org.eclipse.jetty.util.component.Dumpable,org.eclipse.jetty.util.component.LifeCycle
@ManagedObject public class JDBCSessionDataStore extends AbstractSessionDataStore
JDBCSessionDataStore Session data stored in database
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJDBCSessionDataStore.SessionTableSchemaSessionTableSchema-
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.AbstractLifeCycle.AbstractLifeCycleListener
-
-
Field Summary
Fields Modifier and Type Field Description protected DatabaseAdaptor_dbAdaptorprotected boolean_initializedprotected boolean_schemaProvidedprotected JDBCSessionDataStore.SessionTableSchema_sessionTableSchemastatic StringNULL_CONTEXT_PATHUsed for Oracle and other databases where "" is treated as NULL-
Fields inherited from class org.eclipse.jetty.server.session.AbstractSessionDataStore
_context, _gracePeriodSec, _lastExpiryCheckTime, _savePeriodSec
-
-
Constructor Summary
Constructors Constructor Description JDBCSessionDataStore()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandelete(String id)Delete session dataSet<String>doGetExpired(Set<String> candidates)Implemented by subclasses to resolve which sessions this node should attempt to expire.protected voiddoInsert(String id, SessionData data)SessionDatadoLoad(String id)Load the session from persistent store.protected voiddoStart()protected voiddoStop()voiddoStore(String id, SessionData data, long lastSaveTime)Store the session data persistently.protected voiddoUpdate(String id, SessionData data)booleanexists(String id)Test if data exists for a given session id.voidinitialize()booleanisPassivating()True if this type of datastore will passivate session objectsvoidsetDatabaseAdaptor(DatabaseAdaptor dbAdaptor)voidsetSessionTableSchema(JDBCSessionDataStore.SessionTableSchema schema)-
Methods inherited from class org.eclipse.jetty.server.session.AbstractSessionDataStore
checkStarted, getExpired, getGracePeriodSec, getSavePeriodSec, initialize, load, newSessionData, setGracePeriodSec, setSavePeriodSec, store, toString
-
Methods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycle
addBean, addBean, addBean, addEventListener, addManaged, contains, destroy, dump, dump, dump, dump, dump, dumpBeans, dumpObject, dumpObjects, dumpStdErr, dumpThis, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, start, stop, unmanage, updateBean, updateBean, updateBeans
-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
-
-
-
-
Field Detail
-
NULL_CONTEXT_PATH
public static final String NULL_CONTEXT_PATH
Used for Oracle and other databases where "" is treated as NULL- See Also:
- Constant Field Values
-
_initialized
protected boolean _initialized
-
_dbAdaptor
protected DatabaseAdaptor _dbAdaptor
-
_sessionTableSchema
protected JDBCSessionDataStore.SessionTableSchema _sessionTableSchema
-
_schemaProvided
protected boolean _schemaProvided
-
-
Method Detail
-
doStart
protected void doStart() throws Exception- Overrides:
doStartin classAbstractSessionDataStore- Throws:
Exception
-
doStop
protected void doStop() throws Exception- Overrides:
doStopin classorg.eclipse.jetty.util.component.ContainerLifeCycle- Throws:
Exception
-
doLoad
public SessionData doLoad(String id) throws Exception
Description copied from class:AbstractSessionDataStoreLoad the session from persistent store.- Specified by:
doLoadin classAbstractSessionDataStore- Parameters:
id- the id of the session to load- Returns:
- the re-inflated session
- Throws:
Exception- if unable to load the session
-
delete
public boolean delete(String id) throws Exception
Description copied from interface:SessionDataMapDelete session data- Parameters:
id- identity of session to delete- Returns:
- true if the session was deleted
- Throws:
Exception- if unable to delete session data
-
doStore
public void doStore(String id, SessionData data, long lastSaveTime) throws Exception
Description copied from class:AbstractSessionDataStoreStore the session data persistently.- Specified by:
doStorein classAbstractSessionDataStore- Parameters:
id- identity of session to storedata- info of the sessionlastSaveTime- time of previous save or 0 if never saved- Throws:
Exception- if unable to store data
-
doInsert
protected void doInsert(String id, SessionData data) throws Exception
- Throws:
Exception
-
doUpdate
protected void doUpdate(String id, SessionData data) throws Exception
- Throws:
Exception
-
doGetExpired
public Set<String> doGetExpired(Set<String> candidates)
Description copied from class:AbstractSessionDataStoreImplemented by subclasses to resolve which sessions this node should attempt to expire.- Specified by:
doGetExpiredin classAbstractSessionDataStore- Parameters:
candidates- the ids of sessions the SessionDataStore thinks has expired- Returns:
- the reconciled set of session ids that this node should attempt to expire
-
setDatabaseAdaptor
public void setDatabaseAdaptor(DatabaseAdaptor dbAdaptor)
-
setSessionTableSchema
public void setSessionTableSchema(JDBCSessionDataStore.SessionTableSchema schema)
-
isPassivating
@ManagedAttribute(value="does this store serialize sessions", readonly=true) public boolean isPassivating()Description copied from interface:SessionDataStoreTrue if this type of datastore will passivate session objects- Returns:
- true if this store can passivate sessions, false otherwise
-
exists
public boolean exists(String id) throws Exception
Description copied from interface:SessionDataStoreTest if data exists for a given session id.- Parameters:
id- Identity of session whose existence should be checked- Returns:
- true if valid, non-expired session exists
- Throws:
Exception- if problem checking existence with persistence layer
-
-