Class PerUserPoolDataSource
- All Implemented Interfaces:
Serializable,AutoCloseable,Wrapper,Referenceable,CommonDataSource,DataSource
A pooling DataSource appropriate for deployment within J2EE environment. There are many configuration
options, most of which are defined in the parent class. This datasource uses individual pools per user, and some
properties can be set specifically for a given user, if the deployment environment can support initialization of
mapped properties. So for example, a pool of admin or write-access Connections can be guaranteed a certain number of
connections, separate from a maximum set for users with read-only connections.
User passwords can be changed without re-initializing the datasource. When a
getConnection(userName, password) request is processed with a password that is different from those used
to create connections in the pool associated with userName, an attempt is made to create a new
connection using the supplied password and if this succeeds, the existing pool is cleared and a new pool is created
for connections using the new password.
- Since:
- 2.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final org.apache.commons.logging.Logprivate Map<PoolKey, PooledConnectionManager> Map to keep track of Pools for a given user.private static final longFields inherited from class org.apache.commons.dbcp2.datasources.InstanceKeyDataSource
UNKNOWN_TRANSACTIONISOLATION -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clears pool(s) maintained by this data source.voidclose()Closes pool(s) maintained by this data source.Converts a map with Long milliseconds values to another map with Duration values.private static <K,V> HashMap <K, V> protected PooledConnectionManagergetConnectionManager(UserPassKey upKey) private org.apache.commons.pool2.ObjectPool<PooledConnectionAndInfo> Gets the underlying pool but does NOT allocate it.intGets the number of active connections in the default pool.intgetNumActive(String userName) Gets the number of active connections in the pool for a given user.intGets the number of idle connections in the default pool.intgetNumIdle(String userName) Gets the number of idle connections in the pool for a given user.booleangetPerUserBlockWhenExhausted(String userName) Gets the user specific value forBaseGenericObjectPool.getBlockWhenExhausted()for the specified user's pool or the default if no user specific value is defined.getPerUserDefaultAutoCommit(String userName) Gets the user specific default value forConnection.setAutoCommit(boolean)for the specified user's pool.getPerUserDefaultReadOnly(String userName) Gets the user specific default value forConnection.setReadOnly(boolean)for the specified user's pool.getPerUserDefaultTransactionIsolation(String userName) Gets the user specific default value forConnection.setTransactionIsolation(int)for the specified user's pool.getPerUserDurationBetweenEvictionRuns(String userName) Gets the user specific value forBaseGenericObjectPool.getDurationBetweenEvictionRuns()for the specified user's pool or the default if no user specific value is defined.getPerUserEvictionPolicyClassName(String userName) Gets the user specific value forBaseGenericObjectPool.getEvictionPolicyClassName()for the specified user's pool or the default if no user specific value is defined.booleangetPerUserLifo(String userName) Gets the user specific value forBaseGenericObjectPool.getLifo()for the specified user's pool or the default if no user specific value is defined.intgetPerUserMaxIdle(String userName) Gets the user specific value forGenericObjectPool.getMaxIdle()for the specified user's pool or the default if no user specific value is defined.intgetPerUserMaxTotal(String userName) Gets the user specific value forBaseGenericObjectPool.getMaxTotal()for the specified user's pool or the default if no user specific value is defined.getPerUserMaxWaitDuration(String userName) Gets the user specific value forBaseGenericObjectPool.getMaxWaitDuration()for the specified user's pool or the default if no user specific value is defined.longgetPerUserMaxWaitMillis(String userName) Deprecated.getPerUserMinEvictableIdleDuration(String userName) Gets the user specific value forBaseGenericObjectPool.getMinEvictableIdleDuration()for the specified user's pool or the default if no user specific value is defined.longgetPerUserMinEvictableIdleTimeMillis(String userName) Deprecated.intgetPerUserMinIdle(String userName) Gets the user specific value forGenericObjectPool.getMinIdle()for the specified user's pool or the default if no user specific value is defined.intgetPerUserNumTestsPerEvictionRun(String userName) Gets the user specific value forBaseGenericObjectPool.getNumTestsPerEvictionRun()for the specified user's pool or the default if no user specific value is defined.getPerUserSoftMinEvictableIdleDuration(String userName) Gets the user specific value forBaseGenericObjectPool.getSoftMinEvictableIdleDuration()for the specified user's pool or the default if no user specific value is defined.longDeprecated.booleangetPerUserTestOnBorrow(String userName) Gets the user specific value forBaseGenericObjectPool.getTestOnBorrow()for the specified user's pool or the default if no user specific value is defined.booleangetPerUserTestOnCreate(String userName) Gets the user specific value forBaseGenericObjectPool.getTestOnCreate()for the specified user's pool or the default if no user specific value is defined.booleangetPerUserTestOnReturn(String userName) Gets the user specific value forBaseGenericObjectPool.getTestOnReturn()for the specified user's pool or the default if no user specific value is defined.booleangetPerUserTestWhileIdle(String userName) Gets the user specific value forBaseGenericObjectPool.getTestWhileIdle()for the specified user's pool or the default if no user specific value is defined.longDeprecated.private org.apache.commons.pool2.ObjectPool<PooledConnectionAndInfo> Returns the object pool associated with the given PoolKey.protected PooledConnectionAndInfogetPooledConnectionAndInfo(String userName, String password) This method is protected but can only be implemented in this package because PooledConnectionAndInfo is a package private type.private PoolKeygetPoolKey(String userName) Creates a pool key from the provided parameters.Returns aPerUserPoolDataSourceReference.(package private) <K,V> Map <K, V> private voidSupports Serialization interface.private voidregisterPool(String userName, String password) private <K,V> Map <K, V> replaceAll(Map<K, V> currentMap, Map<K, V> newMap) voidsetPerUserBlockWhenExhausted(String userName, Boolean value) Sets a user specific value forBaseGenericObjectPool.getBlockWhenExhausted()for the specified user's pool.(package private) voidsetPerUserBlockWhenExhausted(Map<String, Boolean> newMap) voidsetPerUserDefaultAutoCommit(String userName, Boolean value) Sets a user specific default value forConnection.setAutoCommit(boolean)for the specified user's pool.(package private) voidsetPerUserDefaultAutoCommit(Map<String, Boolean> newMap) voidsetPerUserDefaultReadOnly(String userName, Boolean value) Sets a user specific default value forConnection.setReadOnly(boolean)for the specified user's pool.(package private) voidsetPerUserDefaultReadOnly(Map<String, Boolean> newMap) voidsetPerUserDefaultTransactionIsolation(String userName, Integer value) Sets a user specific default value forConnection.setTransactionIsolation(int)for the specified user's pool.(package private) voidvoidsetPerUserDurationBetweenEvictionRuns(String userName, Duration value) Sets a user specific value forBaseGenericObjectPool.getDurationBetweenEvictionRuns()for the specified user's pool.(package private) voidvoidsetPerUserEvictionPolicyClassName(String userName, String value) Sets a user specific value forBaseGenericObjectPool.getEvictionPolicyClassName()for the specified user's pool.(package private) voidsetPerUserEvictionPolicyClassName(Map<String, String> newMap) voidsetPerUserLifo(String userName, Boolean value) Sets a user specific value forBaseGenericObjectPool.getLifo()for the specified user's pool.(package private) voidsetPerUserLifo(Map<String, Boolean> newMap) voidsetPerUserMaxIdle(String userName, Integer value) Sets a user specific value forGenericObjectPool.getMaxIdle()for the specified user's pool.(package private) voidsetPerUserMaxIdle(Map<String, Integer> newMap) voidsetPerUserMaxTotal(String userName, Integer value) Sets a user specific value forBaseGenericObjectPool.getMaxTotal()for the specified user's pool.(package private) voidsetPerUserMaxTotal(Map<String, Integer> newMap) voidsetPerUserMaxWait(String userName, Duration value) Sets a user specific value forBaseGenericObjectPool.getMaxWaitDuration()for the specified user's pool.(package private) voidsetPerUserMaxWaitDuration(Map<String, Duration> newMap) voidsetPerUserMaxWaitMillis(String userName, Long value) Deprecated.(package private) voidsetPerUserMaxWaitMillis(Map<String, Long> newMap) voidsetPerUserMinEvictableIdle(String userName, Duration value) Sets a user specific value forBaseGenericObjectPool.getMinEvictableIdleDuration()for the specified user's pool.(package private) voidsetPerUserMinEvictableIdle(Map<String, Duration> newMap) voidsetPerUserMinEvictableIdleTimeMillis(String userName, Long value) Deprecated.voidsetPerUserMinIdle(String userName, Integer value) Sets a user specific value forGenericObjectPool.getMinIdle()for the specified user's pool.(package private) voidsetPerUserMinIdle(Map<String, Integer> newMap) voidsetPerUserNumTestsPerEvictionRun(String userName, Integer value) Sets a user specific value forBaseGenericObjectPool.getNumTestsPerEvictionRun()for the specified user's pool.(package private) voidsetPerUserNumTestsPerEvictionRun(Map<String, Integer> newMap) voidsetPerUserSoftMinEvictableIdle(String userName, Duration value) Sets a user specific value forBaseGenericObjectPool.getSoftMinEvictableIdleDuration()for the specified user's pool.(package private) voidsetPerUserSoftMinEvictableIdle(Map<String, Duration> newMap) voidsetPerUserSoftMinEvictableIdleTimeMillis(String userName, Long value) Deprecated.voidsetPerUserTestOnBorrow(String userName, Boolean value) Sets a user specific value forBaseGenericObjectPool.getTestOnBorrow()for the specified user's pool.(package private) voidsetPerUserTestOnBorrow(Map<String, Boolean> newMap) voidsetPerUserTestOnCreate(String userName, Boolean value) Sets a user specific value forBaseGenericObjectPool.getTestOnCreate()for the specified user's pool.(package private) voidsetPerUserTestOnCreate(Map<String, Boolean> newMap) voidsetPerUserTestOnReturn(String userName, Boolean value) Sets a user specific value forBaseGenericObjectPool.getTestOnReturn()for the specified user's pool.(package private) voidsetPerUserTestOnReturn(Map<String, Boolean> newMap) voidsetPerUserTestWhileIdle(String userName, Boolean value) Sets a user specific value forBaseGenericObjectPool.getTestWhileIdle()for the specified user's pool.(package private) voidsetPerUserTestWhileIdle(Map<String, Boolean> newMap) voidsetPerUserTimeBetweenEvictionRunsMillis(String userName, Long value) Deprecated.protected voidsetupDefaults(Connection con, String userName) private DurationtoDurationOrNull(Long millis) Methods inherited from class org.apache.commons.dbcp2.datasources.InstanceKeyDataSource
assertInitializationAllowed, getConnection, getConnection, getConnectionPoolDataSource, getDataSourceName, getDefaultBlockWhenExhausted, getDefaultDurationBetweenEvictionRuns, getDefaultEvictionPolicyClassName, getDefaultLifo, getDefaultMaxIdle, getDefaultMaxTotal, getDefaultMaxWait, getDefaultMaxWaitMillis, getDefaultMinEvictableIdleDuration, getDefaultMinEvictableIdleTimeMillis, getDefaultMinIdle, getDefaultNumTestsPerEvictionRun, getDefaultSoftMinEvictableIdleDuration, getDefaultSoftMinEvictableIdleTimeMillis, getDefaultTestOnBorrow, getDefaultTestOnCreate, getDefaultTestOnReturn, getDefaultTestWhileIdle, getDefaultTimeBetweenEvictionRunsMillis, getDefaultTransactionIsolation, getDescription, getInstanceKey, getJndiEnvironment, getLoginTimeout, getLoginTimeoutDuration, getLogWriter, getMaxConnDuration, getMaxConnLifetime, getMaxConnLifetimeMillis, getParentLogger, getValidationQuery, getValidationQueryTimeout, getValidationQueryTimeoutDuration, isDefaultAutoCommit, isDefaultReadOnly, isRollbackAfterValidation, isWrapperFor, setConnectionPoolDataSource, setDataSourceName, setDefaultAutoCommit, setDefaultBlockWhenExhausted, setDefaultDurationBetweenEvictionRuns, setDefaultEvictionPolicyClassName, setDefaultLifo, setDefaultMaxIdle, setDefaultMaxTotal, setDefaultMaxWait, setDefaultMaxWaitMillis, setDefaultMinEvictableIdle, setDefaultMinEvictableIdleTimeMillis, setDefaultMinIdle, setDefaultNumTestsPerEvictionRun, setDefaultReadOnly, setDefaultSoftMinEvictableIdle, setDefaultSoftMinEvictableIdleTimeMillis, setDefaultTestOnBorrow, setDefaultTestOnCreate, setDefaultTestOnReturn, setDefaultTestWhileIdle, setDefaultTimeBetweenEvictionRunsMillis, setDefaultTransactionIsolation, setDescription, setJndiEnvironment, setJndiEnvironment, setLoginTimeout, setLoginTimeout, setLogWriter, setMaxConnLifetime, setMaxConnLifetimeMillis, setRollbackAfterValidation, setValidationQuery, setValidationQueryTimeout, setValidationQueryTimeout, testCPDS, toString, toStringFields, unwrap
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
log
private static final org.apache.commons.logging.Log log -
perUserBlockWhenExhausted
-
perUserEvictionPolicyClassName
-
perUserLifo
-
perUserMaxIdle
-
perUserMaxTotal
-
perUserMaxWaitDuration
-
perUserMinEvictableIdleDuration
-
perUserMinIdle
-
perUserNumTestsPerEvictionRun
-
perUserSoftMinEvictableIdleDuration
-
perUserTestOnCreate
-
perUserTestOnBorrow
-
perUserTestOnReturn
-
perUserTestWhileIdle
-
perUserDurationBetweenEvictionRuns
-
perUserDefaultAutoCommit
-
perUserDefaultTransactionIsolation
-
perUserDefaultReadOnly
-
managers
Map to keep track of Pools for a given user.
-
-
Constructor Details
-
PerUserPoolDataSource
public PerUserPoolDataSource()Default no-arg constructor for Serialization.
-
-
Method Details
-
createMap
-
clear
public void clear()Clears pool(s) maintained by this data source.- Since:
- 2.3.0
- See Also:
-
close
public void close()Closes pool(s) maintained by this data source.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein classInstanceKeyDataSource- See Also:
-
convertMap
Converts a map with Long milliseconds values to another map with Duration values. -
getConnectionManager
- Specified by:
getConnectionManagerin classInstanceKeyDataSource
-
getCPDSConnectionFactoryPool
private org.apache.commons.pool2.ObjectPool<PooledConnectionAndInfo> getCPDSConnectionFactoryPool(PooledConnectionManager manager) Gets the underlying pool but does NOT allocate it.- Parameters:
manager- A CPDSConnectionFactory.- Returns:
- the underlying pool.
-
getNumActive
public int getNumActive()Gets the number of active connections in the default pool.- Returns:
- The number of active connections in the default pool.
-
getNumActive
Gets the number of active connections in the pool for a given user.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getNumIdle
public int getNumIdle()Gets the number of idle connections in the default pool.- Returns:
- The number of idle connections in the default pool.
-
getNumIdle
Gets the number of idle connections in the pool for a given user.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserBlockWhenExhausted
Gets the user specific value forBaseGenericObjectPool.getBlockWhenExhausted()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserDefaultAutoCommit
Gets the user specific default value forConnection.setAutoCommit(boolean)for the specified user's pool.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserDefaultReadOnly
Gets the user specific default value forConnection.setReadOnly(boolean)for the specified user's pool.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserDefaultTransactionIsolation
Gets the user specific default value forConnection.setTransactionIsolation(int)for the specified user's pool.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserDurationBetweenEvictionRuns
Gets the user specific value forBaseGenericObjectPool.getDurationBetweenEvictionRuns()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
- Since:
- 2.10.0
-
getPerUserEvictionPolicyClassName
Gets the user specific value forBaseGenericObjectPool.getEvictionPolicyClassName()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserLifo
Gets the user specific value forBaseGenericObjectPool.getLifo()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserMaxIdle
Gets the user specific value forGenericObjectPool.getMaxIdle()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserMaxTotal
Gets the user specific value forBaseGenericObjectPool.getMaxTotal()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserMaxWaitDuration
Gets the user specific value forBaseGenericObjectPool.getMaxWaitDuration()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
- Since:
- 2.10.0
-
getPerUserMaxWaitMillis
Deprecated.Gets the user specific value forBaseGenericObjectPool.getMaxWaitDuration()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserMinEvictableIdleDuration
Gets the user specific value forBaseGenericObjectPool.getMinEvictableIdleDuration()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value, never null.
- Since:
- 2.10.0
-
getPerUserMinEvictableIdleTimeMillis
Deprecated.Gets the user specific value forBaseGenericObjectPool.getMinEvictableIdleDuration()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserMinIdle
Gets the user specific value forGenericObjectPool.getMinIdle()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserNumTestsPerEvictionRun
Gets the user specific value forBaseGenericObjectPool.getNumTestsPerEvictionRun()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserSoftMinEvictableIdleDuration
Gets the user specific value forBaseGenericObjectPool.getSoftMinEvictableIdleDuration()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
- Since:
- 2.10.0
-
getPerUserSoftMinEvictableIdleTimeMillis
Deprecated.Gets the user specific value forBaseGenericObjectPool.getSoftMinEvictableIdleDuration()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserTestOnBorrow
Gets the user specific value forBaseGenericObjectPool.getTestOnBorrow()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserTestOnCreate
Gets the user specific value forBaseGenericObjectPool.getTestOnCreate()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserTestOnReturn
Gets the user specific value forBaseGenericObjectPool.getTestOnReturn()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserTestWhileIdle
Gets the user specific value forBaseGenericObjectPool.getTestWhileIdle()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPerUserTimeBetweenEvictionRunsMillis
Deprecated.Gets the user specific value forBaseGenericObjectPool.getDurationBetweenEvictionRuns()for the specified user's pool or the default if no user specific value is defined.- Parameters:
userName- The user name key.- Returns:
- The user specific value.
-
getPool
Returns the object pool associated with the given PoolKey.- Parameters:
poolKey- PoolKey identifying the pool- Returns:
- the GenericObjectPool pooling connections for the userName and datasource specified by the PoolKey
-
getPooledConnectionAndInfo
protected PooledConnectionAndInfo getPooledConnectionAndInfo(String userName, String password) throws SQLException Description copied from class:InstanceKeyDataSourceThis method is protected but can only be implemented in this package because PooledConnectionAndInfo is a package private type.- Specified by:
getPooledConnectionAndInfoin classInstanceKeyDataSource- Parameters:
userName- The user name.password- The user password.- Returns:
- Matching PooledConnectionAndInfo.
- Throws:
SQLException- Connection or registration failure.
-
getPoolKey
Creates a pool key from the provided parameters.- Parameters:
userName- User name- Returns:
- The pool key
-
getReference
Returns aPerUserPoolDataSourceReference.- Throws:
NamingException
-
put
-
readObject
Supports Serialization interface.- Parameters:
in- aObjectInputStreamvalue- Throws:
IOException- if an error occursClassNotFoundException- if an error occurs
-
registerPool
- Throws:
NamingExceptionSQLException
-
replaceAll
-
setPerUserBlockWhenExhausted
-
setPerUserBlockWhenExhausted
Sets a user specific value forBaseGenericObjectPool.getBlockWhenExhausted()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserDefaultAutoCommit
-
setPerUserDefaultAutoCommit
Sets a user specific default value forConnection.setAutoCommit(boolean)for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserDefaultReadOnly
-
setPerUserDefaultReadOnly
Sets a user specific default value forConnection.setReadOnly(boolean)for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserDefaultTransactionIsolation
-
setPerUserDefaultTransactionIsolation
Sets a user specific default value forConnection.setTransactionIsolation(int)for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserDurationBetweenEvictionRuns
-
setPerUserDurationBetweenEvictionRuns
Sets a user specific value forBaseGenericObjectPool.getDurationBetweenEvictionRuns()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.- Since:
- 2.10.0
-
setPerUserEvictionPolicyClassName
-
setPerUserEvictionPolicyClassName
Sets a user specific value forBaseGenericObjectPool.getEvictionPolicyClassName()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserLifo
-
setPerUserLifo
Sets a user specific value forBaseGenericObjectPool.getLifo()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserMaxIdle
-
setPerUserMaxIdle
Sets a user specific value forGenericObjectPool.getMaxIdle()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserMaxTotal
-
setPerUserMaxTotal
Sets a user specific value forBaseGenericObjectPool.getMaxTotal()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserMaxWait
Sets a user specific value forBaseGenericObjectPool.getMaxWaitDuration()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.- Since:
- 2.10.0
-
setPerUserMaxWaitDuration
-
setPerUserMaxWaitMillis
-
setPerUserMaxWaitMillis
Deprecated.Sets a user specific value forBaseGenericObjectPool.getMaxWaitDuration()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserMinEvictableIdle
-
setPerUserMinEvictableIdle
Sets a user specific value forBaseGenericObjectPool.getMinEvictableIdleDuration()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.- Since:
- 2.10.0
-
setPerUserMinEvictableIdleTimeMillis
Deprecated.Sets a user specific value forBaseGenericObjectPool.getMinEvictableIdleDuration()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserMinIdle
-
setPerUserMinIdle
Sets a user specific value forGenericObjectPool.getMinIdle()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserNumTestsPerEvictionRun
-
setPerUserNumTestsPerEvictionRun
Sets a user specific value forBaseGenericObjectPool.getNumTestsPerEvictionRun()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserSoftMinEvictableIdle
-
setPerUserSoftMinEvictableIdle
Sets a user specific value forBaseGenericObjectPool.getSoftMinEvictableIdleDuration()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.- Since:
- 2.10.0
-
setPerUserSoftMinEvictableIdleTimeMillis
Deprecated.Sets a user specific value forBaseGenericObjectPool.getSoftMinEvictableIdleDuration()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserTestOnBorrow
-
setPerUserTestOnBorrow
Sets a user specific value forBaseGenericObjectPool.getTestOnBorrow()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserTestOnCreate
-
setPerUserTestOnCreate
Sets a user specific value forBaseGenericObjectPool.getTestOnCreate()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserTestOnReturn
-
setPerUserTestOnReturn
Sets a user specific value forBaseGenericObjectPool.getTestOnReturn()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserTestWhileIdle
-
setPerUserTestWhileIdle
Sets a user specific value forBaseGenericObjectPool.getTestWhileIdle()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setPerUserTimeBetweenEvictionRunsMillis
Deprecated.Sets a user specific value forBaseGenericObjectPool.getDurationBetweenEvictionRuns()for the specified user's pool.- Parameters:
userName- The user name key.value- The user specific value.
-
setupDefaults
- Specified by:
setupDefaultsin classInstanceKeyDataSource- Throws:
SQLException
-
toDurationOrNull
-
getPerUserMaxWaitDuration(java.lang.String).