Class PooledContextSource
java.lang.Object
org.springframework.ldap.core.support.DelegatingBaseLdapPathContextSourceSupport
org.springframework.ldap.pool2.factory.PooledContextSource
- All Implemented Interfaces:
org.springframework.beans.factory.DisposableBean
,ContextSource
,BaseLdapPathSource
- Direct Known Subclasses:
MutablePooledContextSource
public class PooledContextSource
extends DelegatingBaseLdapPathContextSourceSupport
implements ContextSource, org.springframework.beans.factory.DisposableBean
A
Configuration:
ContextSource
implementation that wraps an object pool and another
ContextSource
. DirContext
s are retrieved from the pool which maintains
them.
NOTE: This implementation is based on apache commons-pool2. Configuration:
Property | Description | Required | Default |
---|---|---|---|
contextSource | The ContextSource to get DirContext s from for adding
to the pool. |
Yes | null |
dirContextValidator | The
DirContextValidator to use for
validating DirContext s. Required if any of the test/validate options are
enabled. |
No | null |
poolConfig | The PoolConfig to configure the pool. |
No | null |
- Since:
- 2.0
-
Field Summary
Modifier and TypeFieldDescriptionprotected final org.slf4j.Logger
The logger for this class and sub-classes -
Constructor Summary
ConstructorDescriptionPooledContextSource
(PoolConfig poolConfig) Creates a new pooling context source, setting up the DirContext object factory and generic keyed object pool. -
Method Summary
Modifier and TypeMethodDescriptionvoid
destroy()
getContext
(String principal, String credentials) Gets aDirContext
instance authenticated using the supplied principal and credentials.protected DirContext
getContext
(DirContextType dirContextType) Gets a DirContext of the specified type from the keyed object pool.int
int
int
int
int
int
int
Gets a read-onlyDirContext
.Gets a read-writeDirContext
instance.protected ContextSource
Get the target ContextSource.void
setContextSource
(ContextSource contextSource) void
setDirContextValidator
(DirContextValidator dirContextValidator) void
setNonTransientExceptions
(Collection<Class<? extends Throwable>> nonTransientExceptions) Configure the exception classes that are to be interpreted as no-transient with regards to eager context invalidation.Methods inherited from class org.springframework.ldap.core.support.DelegatingBaseLdapPathContextSourceSupport
getBaseLdapName, getBaseLdapPath, getBaseLdapPathAsString
-
Field Details
-
logger
protected final org.slf4j.Logger loggerThe logger for this class and sub-classes -
keyedObjectPool
-
-
Constructor Details
-
PooledContextSource
Creates a new pooling context source, setting up the DirContext object factory and generic keyed object pool.
-
-
Method Details
-
getPoolConfig
- Returns:
- the poolConfig
-
getNumIdle
public int getNumIdle()- See Also:
-
GenericKeyedObjectPool.getNumIdle()
-
getNumIdleRead
public int getNumIdleRead()- See Also:
-
GenericKeyedObjectPool.getNumIdle(Object)
-
getNumIdleWrite
public int getNumIdleWrite()- See Also:
-
GenericKeyedObjectPool.getNumIdle(Object)
-
getNumActive
public int getNumActive()- See Also:
-
GenericKeyedObjectPool.getNumActive()
-
getNumActiveRead
public int getNumActiveRead()- See Also:
-
GenericKeyedObjectPool.getNumActive(Object)
-
getNumActiveWrite
public int getNumActiveWrite()- See Also:
-
GenericKeyedObjectPool.getNumActive(Object)
-
getNumWaiters
public int getNumWaiters()- See Also:
-
GenericKeyedObjectPool.getNumWaiters()
-
getContextSource
- Returns:
- the contextSource
-
getDirContextValidator
- Returns:
- the dirContextValidator
-
setContextSource
- Parameters:
contextSource
- the contextSource to set Required
-
setDirContextValidator
- Parameters:
dirContextValidator
- the dirContextValidator to set Required
-
setNonTransientExceptions
public void setNonTransientExceptions(Collection<Class<? extends Throwable>> nonTransientExceptions) Configure the exception classes that are to be interpreted as no-transient with regards to eager context invalidation. If one of the configured exceptions (or subclasses of them) is thrown by any method on a pooled DirContext, that instance will immediately be marked as invalid without any additional testing (i.e. testOnReturn). This allows for more efficient management of dead connections. Default isCommunicationException
.- Parameters:
nonTransientExceptions
- the exception classes that should be interpreted as non-transient with regards to eager invalidation.- Since:
- 2.0
-
destroy
- Specified by:
destroy
in interfaceorg.springframework.beans.factory.DisposableBean
- Throws:
Exception
-
getTarget
Description copied from class:DelegatingBaseLdapPathContextSourceSupport
Get the target ContextSource.- Specified by:
getTarget
in classDelegatingBaseLdapPathContextSourceSupport
- Returns:
- the target ContextSource.
-
getReadOnlyContext
Description copied from interface:ContextSource
Gets a read-onlyDirContext
. The returnedDirContext
must be possible to perform read-only operations on.- Specified by:
getReadOnlyContext
in interfaceContextSource
- Returns:
- A DirContext instance, never null.
-
getReadWriteContext
Description copied from interface:ContextSource
Gets a read-writeDirContext
instance.- Specified by:
getReadWriteContext
in interfaceContextSource
- Returns:
- A
DirContext
instance, nevernull
.
-
getContext
Gets a DirContext of the specified type from the keyed object pool.- Parameters:
dirContextType
- The type of context to return.- Returns:
- A wrapped DirContext of the specified type.
- Throws:
org.springframework.dao.DataAccessResourceFailureException
- If retrieving the object from the pool throws an exception
-
getContext
Description copied from interface:ContextSource
Gets aDirContext
instance authenticated using the supplied principal and credentials. Typically to be used for plain authentication purposes. Note that this method will never make use of native Java LDAP pooling, even though this instance is configured to do so. This is to force password changes in the target directory to take effect as soon as possible.- Specified by:
getContext
in interfaceContextSource
- Parameters:
principal
- The principal (typically a distinguished name of a user in the LDAP tree) to use for authentication.credentials
- The credentials to use for authentication.- Returns:
- an authenticated
DirContext
instance, nevernull
.
-