java.io.Serializable, java.lang.AutoCloseable, java.sql.Wrapper, javax.naming.Referenceable, javax.sql.CommonDataSource, javax.sql.DataSourcepublic class SharedPoolDataSource extends InstanceKeyDataSource
A pooling DataSource appropriate for deployment within
J2EE environment. There are many configuration options, most of which are
defined in the parent class. All users (based on username) share a single
maximum number of Connections in this datasource.
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, idle connections
created using the old password are destroyed and new connections are created
using the new password.
UNKNOWN_TRANSACTIONISOLATION| Constructor | Description |
|---|---|
SharedPoolDataSource() |
Default no-arg constructor for Serialization
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
close() |
Close pool being maintained by this datasource.
|
protected org.apache.tomcat.dbcp.dbcp2.datasources.PooledConnectionManager |
getConnectionManager(org.apache.tomcat.dbcp.dbcp2.datasources.UserPassKey upkey) |
|
int |
getMaxTotal() |
|
int |
getNumActive() |
|
int |
getNumIdle() |
|
protected org.apache.tomcat.dbcp.dbcp2.datasources.PooledConnectionAndInfo |
getPooledConnectionAndInfo(java.lang.String username,
java.lang.String password) |
|
javax.naming.Reference |
getReference() |
|
void |
setMaxTotal(int maxTotal) |
Set
BaseGenericObjectPool.getMaxTotal() for this pool. |
protected void |
setupDefaults(java.sql.Connection con,
java.lang.String username) |
assertInitializationAllowed, getConnection, getConnection, getConnectionPoolDataSource, getDataSourceName, getDefaultBlockWhenExhausted, getDefaultEvictionPolicyClassName, getDefaultLifo, getDefaultMaxIdle, getDefaultMaxTotal, getDefaultMaxWaitMillis, getDefaultMinEvictableIdleTimeMillis, getDefaultMinIdle, getDefaultNumTestsPerEvictionRun, getDefaultSoftMinEvictableIdleTimeMillis, getDefaultTestOnBorrow, getDefaultTestOnCreate, getDefaultTestOnReturn, getDefaultTestWhileIdle, getDefaultTimeBetweenEvictionRunsMillis, getDefaultTransactionIsolation, getDescription, getInstanceKey, getJndiEnvironment, getLoginTimeout, getLogWriter, getMaxConnLifetimeMillis, getParentLogger, getValidationQuery, getValidationQueryTimeout, isDefaultAutoCommit, isDefaultReadOnly, isRollbackAfterValidation, isWrapperFor, setConnectionPoolDataSource, setDataSourceName, setDefaultAutoCommit, setDefaultBlockWhenExhausted, setDefaultEvictionPolicyClassName, setDefaultLifo, setDefaultMaxIdle, setDefaultMaxTotal, setDefaultMaxWaitMillis, setDefaultMinEvictableIdleTimeMillis, setDefaultMinIdle, setDefaultNumTestsPerEvictionRun, setDefaultReadOnly, setDefaultSoftMinEvictableIdleTimeMillis, setDefaultTestOnBorrow, setDefaultTestOnCreate, setDefaultTestOnReturn, setDefaultTestWhileIdle, setDefaultTimeBetweenEvictionRunsMillis, setDefaultTransactionIsolation, setDescription, setJndiEnvironment, setLoginTimeout, setLogWriter, setMaxConnLifetimeMillis, setRollbackAfterValidation, setValidationQuery, setValidationQueryTimeout, testCPDS, unwrappublic SharedPoolDataSource()
public void close()
throws java.lang.Exception
close in interface java.lang.AutoCloseableclose in class InstanceKeyDataSourcejava.lang.Exceptionpublic int getMaxTotal()
BaseGenericObjectPool.getMaxTotal() for this pool.public void setMaxTotal(int maxTotal)
BaseGenericObjectPool.getMaxTotal() for this pool.maxTotal - The max total valuepublic int getNumActive()
public int getNumIdle()
protected org.apache.tomcat.dbcp.dbcp2.datasources.PooledConnectionAndInfo getPooledConnectionAndInfo(java.lang.String username,
java.lang.String password)
throws java.sql.SQLException
getPooledConnectionAndInfo in class InstanceKeyDataSourcejava.sql.SQLExceptionprotected org.apache.tomcat.dbcp.dbcp2.datasources.PooledConnectionManager getConnectionManager(org.apache.tomcat.dbcp.dbcp2.datasources.UserPassKey upkey)
getConnectionManager in class InstanceKeyDataSourcepublic javax.naming.Reference getReference()
throws javax.naming.NamingException
SharedPoolDataSource Reference.javax.naming.NamingException - Should not occurprotected void setupDefaults(java.sql.Connection con,
java.lang.String username)
throws java.sql.SQLException
setupDefaults in class InstanceKeyDataSourcejava.sql.SQLExceptionCopyright © 2000-2018 Apache Software Foundation. All Rights Reserved.