Browse Source

Added setter method to allow connection pooling to be disabled.

1.0.x
Luke Taylor 20 years ago
parent
commit
fe2f4e4a3b
  1. 15
      core/src/main/java/org/acegisecurity/providers/ldap/DefaultInitialDirContextFactory.java

15
core/src/main/java/org/acegisecurity/providers/ldap/DefaultInitialDirContextFactory.java

@ -51,8 +51,8 @@ import org.apache.commons.logging.LogFactory; @@ -51,8 +51,8 @@ import org.apache.commons.logging.LogFactory;
* that user.
* </p>
* <p>
* Connection pooling is enabled for anonymous or manager connections, but not when binding
* as a specific user.
* Connection pooling is enabled by default for anonymous or manager connections, but
* not when binding as a specific user.
* </p>
*
* @see <a href="http://java.sun.com/products/jndi/tutorial/ldap/connect/pool.html">The Java
@ -281,4 +281,15 @@ public class DefaultInitialDirContextFactory implements InitialDirContextFactory @@ -281,4 +281,15 @@ public class DefaultInitialDirContextFactory implements InitialDirContextFactory
public void setMessageSource(MessageSource messageSource) {
this.messages = new MessageSourceAccessor(messageSource);
}
/**
* Connection pooling is enabled by default for anonymous or "manager"
* connections when using the default Sun provider. To disable all
* connection pooling, set this property to false.
*
* @param useConnectionPool whether to pool connections for non-specific users.
*/
public void setUseConnectionPool(boolean useConnectionPool) {
this.useConnectionPool = useConnectionPool;
}
}

Loading…
Cancel
Save