Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.management.runtime
Interface JDBCConnectionPoolRuntimeMBean

All Superinterfaces:
ComponentRuntimeMBean, DynamicMBean, MBeanRegistration, NotificationBroadcaster, RuntimeMBean, WebLogicMBean

Deprecated. 9.0.0.0 Replaced by JDBCDataSourceRuntimeMBean

public interface JDBCConnectionPoolRuntimeMBean
extends ComponentRuntimeMBean

This class is used for monitoring a WebLogic JDBC component


Field Summary
 
Fields inherited from interface weblogic.management.runtime.ComponentRuntimeMBean
ACTIVATED, NEW, PREPARED, UNPREPARED
 
Method Summary
 void clearStatementCache()
          Deprecated. Clears the cache of Prepared and Callable Statements maintained for each connection in the connection pool.
 void disableDroppingUsers()
          Deprecated. Disable the pool, immediately disconnecting all users.
 void disableFreezingUsers()
          Deprecated. Disable the pool, suspending all operations on pool connections until the pool is re-enabled.
 void dumpPool()
          Deprecated. Prints out the data structure of the connection pool in the following lists: alvList - lists details about database connections in the connection pool that are not currently in use by a client. unavlList - lists details about database connections that WebLogic Server failed to create on server startup or failed to recreate after a failed database connection test. resvList - lists details about database connections in teh connection pool that are currently in use by a client.
 void enable()
          Deprecated. Restore all access to and operations on the pool.
 void forceShutdown()
          Deprecated. Forcibly shuts down the connection pool.
 void forceSuspend()
          Deprecated. Forcibly disables the pool, suspending all operations on pool connections until the pool is re-enabled.
 int getActiveConnectionsAverageCount()
          Deprecated.  
 int getActiveConnectionsCurrentCount()
          Deprecated.  
 int getActiveConnectionsHighCount()
          Deprecated.  
 int getConnectionDelayTime()
          Deprecated.  
 int getConnectionLeakProfileCount()
          Deprecated. Connection leak is a situation when connection from the pool was not closed explicitly by calling close() and was garbage collected.
 JDBCConnectionLeakProfile[] getConnectionLeakProfiles(int index, int count)
          Deprecated. Connection leak profiling stores stack trace at the time when connection was created in case of connection leak.
 int getConnectionsTotalCount()
          Deprecated. The total number of JDBC connections in this JDBCConnectionPoolRuntimeMBean since the pool has been instantiated.
 int getCurrCapacity()
          Deprecated. The current capacity of this connection pool.
 int getFailuresToReconnectCount()
          Deprecated.  
 int getHighestNumAvailable()
          Deprecated. The highest number of available connections in this pool.
 int getHighestNumUnavailable()
          Deprecated. The highest number of unavailable connections in this pool.
 int getLeakedConnectionCount()
          Deprecated.  
 int getMaxCapacity()
          Deprecated. The maximum capacity of this connection pool.
 int getNumAvailable()
          Deprecated. The number of available connections in this pool.
 int getNumUnavailable()
          Deprecated. The number of unavailable connections in this pool.
 boolean getPoolState()
          Deprecated.  
 Properties getProperties()
          Deprecated. Returns the properties for a pool.
 String getState()
          Deprecated. The current state of the connection pool.
 int getStatementProfileCount()
          Deprecated. SQL roundtrip profiling stores SQL statement text, execution time and other metrics.
 JDBCStatementProfile[] getStatementProfiles(int index, int count)
          Deprecated. SQL roundtrip profiling stores SQL statement text, execution time and other metrics.
 String getVersionJDBCDriver()
          Deprecated. The class name of the JDBC driver used to create database connections.
 int getWaitingForConnectionCurrentCount()
          Deprecated.  
 int getWaitingForConnectionHighCount()
          Deprecated.  
 int getWaitSecondsHighCount()
          Deprecated.  
 boolean isEnabled()
          Deprecated.  
 boolean poolExists(String poolName)
          Deprecated. Indicates whether the specified pool exists.
 void reset()
          Deprecated. Resets the connection pool by shutting down and re-establishing all available connecton pool connections.
 void resetConnectionLeakProfile()
          Deprecated. Resets connection leak profile.
 void resetStatementProfile()
          Deprecated. Resets SQL statement profile.
 void resume()
          Deprecated. Restores all access to and operations on a connection pool that has been suspended (marked as disabled).
 void shrink()
          Deprecated. Shrinks the named database ConnectionPool to the current number of reserved connections or the initial connection pool size, which ever is greater.
 void shutdown()
          Deprecated. Shuts down the pool.
 void suspend()
          Deprecated. Disables the connection pool, suspending all operations on pool connections until the pool is re-enabled.
 String testPool()
          Deprecated. Test the pool by reserving and releasing a connection from it.
 
Methods inherited from interface weblogic.management.runtime.ComponentRuntimeMBean
getDeploymentState, getModuleId, getWorkManagerRuntimes
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 

Method Detail

getConnectionLeakProfileCount

int getConnectionLeakProfileCount()
Deprecated. 

Connection leak is a situation when connection from the pool was not closed explicitly by calling close() and was garbage collected.

This method should be used first before requesting connection leak profiles from the profile storage.

Returns:
Number of the connection leak profiles in profile storage.

getConnectionLeakProfiles

JDBCConnectionLeakProfile[] getConnectionLeakProfiles(int index,
                                                      int count)
Deprecated. 

Connection leak profiling stores stack trace at the time when connection was created in case of connection leak. This enables you to identify where the leak occurred.

Connection leak is a situation when connection from the pool was not closed explicitly by calling close() and was garbage collected.

Returns:
Connection leak profiles starting from this index. Number of returned profiles depends on factual number of profiles in the profile storage.
See Also:
JDBCConnectionLeakProfile

getStatementProfileCount

int getStatementProfileCount()
Deprecated. 

SQL roundtrip profiling stores SQL statement text, execution time and other metrics.

This method should be used first before requesting SQL statement profiles from the profile storage.

Returns:
Number of the SQL statement profiles in profile storage.

getStatementProfiles

JDBCStatementProfile[] getStatementProfiles(int index,
                                            int count)
Deprecated. 

SQL roundtrip profiling stores SQL statement text, execution time and other metrics.

Returns:
Statement profiles starting from this index. Number of returned profiles depends on factual number of profiles in the profile storage.
See Also:
JDBCStatementProfile

testPool

String testPool()
Deprecated. 

Test the pool by reserving and releasing a connection from it. If the pool configuration attribute TestConnectionsOnReserve or TestConnectionsOnRelease is enabled, the acquired connection is also tested as part of the reserve and release operation.

Returns:
returns null upon success, else returns stacktrace
See Also:
JDBCConnectionPoolMBean
All security roles can access this item.

getLeakedConnectionCount

int getLeakedConnectionCount()
Deprecated. 
Returns:
Number of leaked connections. Leaked connection is a connection that was checked out from the connection pool but was not returned to the pool by calling close ().

getPoolState

boolean getPoolState()
Deprecated. 
Returns:
Current state of the connection pool. true if the pool enabled. false if the pool disabled

isEnabled

boolean isEnabled()
Deprecated. 
Returns:
Boolean indicating pool is enabled or disabled. true if the pool is enabled. false if the pool is disabled.

getState

String getState()
Deprecated. 

The current state of the connection pool.

Possible values are:

Returns:
Current state of the connection pool.

getFailuresToReconnectCount

int getFailuresToReconnectCount()
Deprecated. 
Returns:
Number of cases when a connection pool attempted to refresh a connection to a database and failed. Failure may happen because of database unavailablity or broken connection to the database.

getConnectionDelayTime

int getConnectionDelayTime()
Deprecated. 
Returns:
Averaged time necessary to get a connection from the database. This is how long it takes to get physical connection from database. It is calculated as summary time to connect divided by summary number of connections. Return value is milliseconds.

getActiveConnectionsCurrentCount

int getActiveConnectionsCurrentCount()
Deprecated. 
Returns:
Current total number of active connections.

getWaitingForConnectionCurrentCount

int getWaitingForConnectionCurrentCount()
Deprecated. 
Returns:
Current total number waiting for a connection.

getVersionJDBCDriver

String getVersionJDBCDriver()
Deprecated. 
The class name of the JDBC driver used to create database connections.

Returns:
Driver class name

getActiveConnectionsHighCount

int getActiveConnectionsHighCount()
Deprecated. 
Returns:
The high water mark of active connections in this JDBCConnectionPoolRuntimeMBean. The count starts at zero each time the JDBCConnectionPoolRuntimeMBean is instantiated.

Note that this is an optimization method for a highly useful statistic that could be implemented less efficiently using change notification.


getActiveConnectionsAverageCount

int getActiveConnectionsAverageCount()
Deprecated. 
Returns:
The running average of active connections in this JDBCConnectionPoolRuntimeMBean. The count starts at zero each time the JDBCConnectionPoolRuntimeMBean is instantiated.

getWaitingForConnectionHighCount

int getWaitingForConnectionHighCount()
Deprecated. 
Returns:
The high water mark of waiters for a connection in this JDBCConnectionPoolRuntimeMBean. The count starts at zero each time the JDBCConnectionPoolRuntimeMBean is instantiated.

Note that this is an optimization method for a highly useful statistic that could be implemented less efficiently using change notification.


getWaitSecondsHighCount

int getWaitSecondsHighCount()
Deprecated. 
Returns:
The number of seconds the longest waiter for a connection waited.

getConnectionsTotalCount

int getConnectionsTotalCount()
Deprecated. 

The total number of JDBC connections in this JDBCConnectionPoolRuntimeMBean since the pool has been instantiated.


getMaxCapacity

int getMaxCapacity()
Deprecated. 

The maximum capacity of this connection pool.


getCurrCapacity

int getCurrCapacity()
Deprecated. 

The current capacity of this connection pool.


getNumAvailable

int getNumAvailable()
Deprecated. 

The number of available connections in this pool.


getHighestNumAvailable

int getHighestNumAvailable()
Deprecated. 

The highest number of available connections in this pool.


getNumUnavailable

int getNumUnavailable()
Deprecated. 

The number of unavailable connections in this pool.


getHighestNumUnavailable

int getHighestNumUnavailable()
Deprecated. 

The highest number of unavailable connections in this pool.


resetConnectionLeakProfile

void resetConnectionLeakProfile()
Deprecated. 

Resets connection leak profile.


resetStatementProfile

void resetStatementProfile()
Deprecated. 

Resets SQL statement profile.


shrink

void shrink()
            throws Exception
Deprecated. 

Shrinks the named database ConnectionPool to the current number of reserved connections or the initial connection pool size, which ever is greater.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
All security roles can access this item.

reset

void reset()
           throws Exception
Deprecated. 

Resets the connection pool by shutting down and re-establishing all available connecton pool connections. This method should be used when the connection pool is in the Unhealthy state and needs to be reinitialized.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
All security roles can access this item.

suspend

void suspend()
             throws Exception
Deprecated. 

Disables the connection pool, suspending all operations on pool connections until the pool is re-enabled.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
All security roles can access this item.

forceSuspend

void forceSuspend()
                  throws Exception
Deprecated. 

Forcibly disables the pool, suspending all operations on pool connections until the pool is re-enabled. All current users of the pool are forcibly disconnected. All connections currently in use are closed and recreated.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
All security roles can access this item.

shutdown

void shutdown()
              throws Exception
Deprecated. 

Shuts down the pool. If any connections from the pool are currently in use, the operation will fail.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
All security roles can access this item.

forceShutdown

void forceShutdown()
                   throws Exception
Deprecated. 

Forcibly shuts down the connection pool. All current users of the pool are forcibly disconnected.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error

resume

void resume()
            throws Exception
Deprecated. 

Restores all access to and operations on a connection pool that has been suspended (marked as disabled).

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
All security roles can access this item.

disableDroppingUsers

void disableDroppingUsers()
                          throws Exception
Deprecated. 

Disable the pool, immediately disconnecting all users.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
See Also:
JDBCConnectionPoolRuntimeMBean.forceSuspend()
All security roles can access this item.

disableFreezingUsers

void disableFreezingUsers()
                          throws Exception
Deprecated. 

Disable the pool, suspending all operations on pool connections until the pool is re-enabled.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
See Also:
JDBCConnectionPoolRuntimeMBean.suspend()

enable

void enable()
            throws Exception
Deprecated. 

Restore all access to and operations on the pool.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error
See Also:
JDBCConnectionPoolRuntimeMBean.resume()
All security roles can access this item.

getProperties

Properties getProperties()
                         throws Exception
Deprecated. 

Returns the properties for a pool.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Throws:
Exception - if there is an error

poolExists

boolean poolExists(String poolName)
                   throws Exception
Deprecated. 

Indicates whether the specified pool exists.

This is a privileged method, and can only be invoked on a client that has specified an authorized Principal.

Parameters:
poolName - Name of the pool being looked for
Throws:
Exception - if there is an error

clearStatementCache

void clearStatementCache()
                         throws Exception
Deprecated. 

Clears the cache of Prepared and Callable Statements maintained for each connection in the connection pool.

Throws:
Exception - if there is an error
All security roles can access this item.

dumpPool

void dumpPool()
              throws Exception
Deprecated. 

Prints out the data structure of the connection pool in the following lists:

Throws:
Exception

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02