|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.dbcp.datasources.InstanceKeyDataSource org.apache.commons.dbcp.datasources.PerUserPoolDataSource
public class PerUserPoolDataSource
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.
Field Summary |
---|
Fields inherited from class org.apache.commons.dbcp.datasources.InstanceKeyDataSource |
---|
instanceKey, UNKNOWN_TRANSACTIONISOLATION |
Constructor Summary | |
---|---|
PerUserPoolDataSource()
Default no-arg constructor for Serialization |
Method Summary | |
---|---|
void |
close()
Close pool(s) being maintained by this datasource. |
protected org.apache.commons.dbcp.datasources.PooledConnectionManager |
getConnectionManager(org.apache.commons.dbcp.datasources.UserPassKey upkey)
|
int |
getDefaultMaxActive()
The maximum number of active connections that can be allocated from this pool at the same time, or non-positive for no limit. |
int |
getDefaultMaxIdle()
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or negative for no limit. |
int |
getDefaultMaxWait()
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely. |
int |
getNumActive()
Get the number of active connections in the default pool. |
int |
getNumActive(String username,
String password)
Get the number of active connections in the pool for a given user. |
int |
getNumIdle()
Get the number of idle connections in the default pool. |
int |
getNumIdle(String username,
String password)
Get the number of idle connections in the pool for a given user. |
Boolean |
getPerUserDefaultAutoCommit(String key)
The keys are usernames and the value is the --. |
Boolean |
getPerUserDefaultReadOnly(String username)
The keys are usernames and the value is the --. |
Integer |
getPerUserDefaultTransactionIsolation(String username)
The isolation level of connections when returned from getConnection. |
Integer |
getPerUserMaxActive(String username)
The maximum number of active connections that can be allocated from this pool at the same time, or non-positive for no limit. |
Integer |
getPerUserMaxIdle(String username)
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or negative for no limit. |
Integer |
getPerUserMaxWait(String username)
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely. |
protected org.apache.commons.dbcp.datasources.PooledConnectionAndInfo |
getPooledConnectionAndInfo(String username,
String password)
|
Reference |
getReference()
Returns a PerUserPoolDataSource Reference . |
void |
setDefaultMaxActive(int maxActive)
The maximum number of active connections that can be allocated from this pool at the same time, or non-positive for no limit. |
void |
setDefaultMaxIdle(int defaultMaxIdle)
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or negative for no limit. |
void |
setDefaultMaxWait(int defaultMaxWait)
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely. |
void |
setPerUserDefaultAutoCommit(String username,
Boolean value)
The keys are usernames and the value is the --. |
void |
setPerUserDefaultReadOnly(String username,
Boolean value)
The keys are usernames and the value is the --. |
void |
setPerUserDefaultTransactionIsolation(String username,
Integer value)
The isolation level of connections when returned from getConnection. |
void |
setPerUserMaxActive(String username,
Integer value)
The maximum number of active connections that can be allocated from this pool at the same time, or non-positive for no limit. |
void |
setPerUserMaxIdle(String username,
Integer value)
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or negative for no limit. |
void |
setPerUserMaxWait(String username,
Integer value)
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely. |
protected void |
setupDefaults(Connection con,
String username)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PerUserPoolDataSource()
Method Detail |
---|
public void close()
close
in class InstanceKeyDataSource
public int getDefaultMaxActive()
public void setDefaultMaxActive(int maxActive)
public int getDefaultMaxIdle()
public void setDefaultMaxIdle(int defaultMaxIdle)
public int getDefaultMaxWait()
public void setDefaultMaxWait(int defaultMaxWait)
public Boolean getPerUserDefaultAutoCommit(String key)
public void setPerUserDefaultAutoCommit(String username, Boolean value)
public Integer getPerUserDefaultTransactionIsolation(String username)
public void setPerUserDefaultTransactionIsolation(String username, Integer value)
public Integer getPerUserMaxActive(String username)
public void setPerUserMaxActive(String username, Integer value)
public Integer getPerUserMaxIdle(String username)
public void setPerUserMaxIdle(String username, Integer value)
public Integer getPerUserMaxWait(String username)
public void setPerUserMaxWait(String username, Integer value)
public Boolean getPerUserDefaultReadOnly(String username)
public void setPerUserDefaultReadOnly(String username, Boolean value)
public int getNumActive()
public int getNumActive(String username, String password)
public int getNumIdle()
public int getNumIdle(String username, String password)
protected org.apache.commons.dbcp.datasources.PooledConnectionAndInfo getPooledConnectionAndInfo(String username, String password) throws SQLException
getPooledConnectionAndInfo
in class InstanceKeyDataSource
SQLException
protected void setupDefaults(Connection con, String username) throws SQLException
setupDefaults
in class InstanceKeyDataSource
SQLException
protected org.apache.commons.dbcp.datasources.PooledConnectionManager getConnectionManager(org.apache.commons.dbcp.datasources.UserPassKey upkey)
getConnectionManager
in class InstanceKeyDataSource
public Reference getReference() throws NamingException
PerUserPoolDataSource
Reference
.
getReference
in interface Referenceable
getReference
in class InstanceKeyDataSource
NamingException
- If a naming exception was encountered
while retrieving the reference.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |