Class PooledContextSource

    • Field Detail

      • logger

        protected final org.slf4j.Logger logger
        The logger for this class and sub-classes
      • keyedObjectPool

        protected final org.apache.commons.pool2.impl.GenericKeyedObjectPool<java.lang.Object,​java.lang.Object> keyedObjectPool
    • Constructor Detail

      • PooledContextSource

        public PooledContextSource​(PoolConfig poolConfig)
        Creates a new pooling context source, setting up the DirContext object factory and generic keyed object pool.
    • Method Detail

      • getPoolConfig

        public PoolConfig 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

        public ContextSource getContextSource()
        Returns:
        the contextSource
      • getDirContextValidator

        public DirContextValidator getDirContextValidator()
        Returns:
        the dirContextValidator
      • setContextSource

        public void setContextSource​(ContextSource contextSource)
        Parameters:
        contextSource - the contextSource to set Required
      • setDirContextValidator

        public void setDirContextValidator​(DirContextValidator dirContextValidator)
        Parameters:
        dirContextValidator - the dirContextValidator to set Required
      • setNonTransientExceptions

        public void setNonTransientExceptions​(java.util.Collection<java.lang.Class<? extends java.lang.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 is CommunicationException.
        Parameters:
        nonTransientExceptions - the exception classes that should be interpreted as non-transient with regards to eager invalidation.
        Since:
        2.0
      • destroy

        public void destroy()
                     throws java.lang.Exception
        Specified by:
        destroy in interface org.springframework.beans.factory.DisposableBean
        Throws:
        java.lang.Exception
      • getReadOnlyContext

        public javax.naming.directory.DirContext getReadOnlyContext()
        Description copied from interface: ContextSource
        Gets a read-only DirContext. The returned DirContext must be possible to perform read-only operations on.
        Specified by:
        getReadOnlyContext in interface ContextSource
        Returns:
        A DirContext instance, never null.
      • getReadWriteContext

        public javax.naming.directory.DirContext getReadWriteContext()
        Description copied from interface: ContextSource
        Gets a read-write DirContext instance.
        Specified by:
        getReadWriteContext in interface ContextSource
        Returns:
        A DirContext instance, never null.
      • getContext

        protected javax.naming.directory.DirContext getContext​(DirContextType dirContextType)
        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

        public javax.naming.directory.DirContext getContext​(java.lang.String principal,
                                                            java.lang.String credentials)
        Description copied from interface: ContextSource
        Gets a DirContext 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 interface ContextSource
        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, never null.