Business Components

oracle.jbo.server
Interface ConnectionPoolManager


public interface ConnectionPoolManager

Declares ConnectionPoolManager operations. If JDBC connection pooling has been enabled, the ConnectionPoolManager is invoked by the DBTransaction class to create and release cached JDBC connection instances.

The connection pool manager is enabled when the client invokes the application module instance amInstance.getTransaction().connect(), and is disabled with amInstance.getTransaction().disconnect(). No other coding is required to use JDBC connection pooling with Business Components for Java 3.2, other than set the MaxPoolSize or InitPoolSize parameters, if you wish.

In contrast, if you have created a custom DBTransaction you will have to implement additional logic in that class to use the JDBC connection pool.

It is only necessary to create a custom connection pool if you already have your own JDBC connection pooling implementation that you would like to use with Business Components for Java. You should invoke code that follows the pattern in the samples below to use the connection pool. For example, this is what the Business Components for Java implementation of DBTransactionImpl performs to use the pool:

Checking out a connection:

    // Get a connection pool manager instance
    // from the connection pool manager factory
       ConnectionPoolManager connectionPoolManager =
       ConnectionPoolManagerFactory.getConnectionPoolManager();

    // Generate a unique signature for the pool.  Assume
    // that the JDBC URL, JDBC user, and JDBC password were
    // all specified as separate properties.  Note that
    // the connection pool key is stored as member variable
    // for later use.
    mConnectionPoolKey = connectionPoolManager
       .generatePoolKey(jdbcURL, jdbcUser, jdbcPassword);

    // Get a connection from the pool for the key that
    // was generated above.  The URL, user, and password
    // passed in case a connection is not available and a
    // new connection must be generated.
    Connection conn = connectionPoolManager.getConnection(
       connectionPoolKey
       , jdbcURL
       , null
       , jdbcUser
       , jdbcPassword);
 

Checking in a connection:

    // Get a connection pool manager instance
    // from the connection pool manager factory
     ConnectionPoolManager connectionPoolManager =
       ConnectionPoolManagerFactory.getConnectionPoolManager();

    // Return the connection to the connection pool.  The target
    // connection pool is identified with the connection pool key
    // that was generated while checking out a connection above.
    // The jdbcConn
     connectionPoolManager.returnConnection(
       mConnectionPoolKey
       , mjdbcConnection);
 

The following guideline should be followed when implementing a custom ConnectionPoolManager:

The connection pool manager should be able to support multiple database instance, user, and password combinations. For more information, see generatePoolKey.

As an example, here is the implementation of the default connection pool manager, ConnectionPoolManagerImpl, that will be loaded if a custom connection pool manager is not specified.

Declaring the custom connection pool manager to the VM

If you are using a custom connection pool manager, you must declare it, either in the jboserver.properties file or as a JVM parameter: For example, to declare the default connection pool manager as a JVM parameter, enter:

java -Djbo.ConnectionPoolManager=oracle.jbo.server.ConnectionPoolManagerImpl

The synonymous command in the jboserver.properties file would be:

jbo.ConnectionPoolManager=oracle.jbo.server.ConnectionPoolManagerImpl

About Connection Pooling

In version 3.2 of Business Components for Java, connection pooling is the new default behavior. Instead of one JDBC connection being created for each application module instance, and being destroyed when the instance disconnects, application modules can now reuse a pool of connections. One connection pool is assigned for each connection URL.

How connections are assigned, created, and released

The framework provides a connection pool manager to manage the pool. When a database connection is needed by a top-level application module instance, the following sequence of events occurs:

  1. The application module instance asks the connection pool manager for a connection, as specified in the JDBC connection URL.
  2. The connection pool manager looks for an available connection in the pool. If there isn't one, it creates one, up to the maximum allowable connections (MaxPoolSize). If it can't create a connection, it waits for one (there is no timeout).
  3. When the application module instance disconnects, it goes back to the pool.

There is one connection pool manager for each business logic tier's Java VM. Connections remain in the pool until the Java VM stops running.

See Also:
ConnectionPoolManagerFactory

Method Summary
 void addConnection(java.lang.String poolKey, java.sql.Connection connection)
          Adds a connection to a connection pool.
 java.lang.String generatePoolKey(java.lang.String url, java.util.Properties info)
          Generates a unique pool identifier (poolKey) for the specified JDBC URL and JDBC driver properties.
 java.lang.String generatePoolKey(java.lang.String url, java.lang.String user, java.lang.String password)
          Generates a unique pool identifier (poolKey) for the specified JDBC URL and JDBC driver properties.
 java.sql.Connection getConnection(java.lang.String connectionPoolKey, java.lang.String url, java.util.Properties info, java.lang.String user, java.lang.String password)
          Returns a pooled connection from the specified target pool.
 int getInitPoolSize()
          Returns the initial pool size for connection pools that are managed by this connection pool manager.
 int getMaxPoolSize()
          Returns the maximum pool size for connection pools that are managed by this connection pool manager.
 void removeConnection(java.lang.String poolKey, java.sql.Connection connection)
          Removes a pooled connection from a connection pool.
 void returnConnection(java.lang.String poolKey, java.sql.Connection connection)
          Returns a pooled connection to a connection pool.
 

Method Detail

getConnection

public java.sql.Connection getConnection(java.lang.String connectionPoolKey,
                                         java.lang.String url,
                                         java.util.Properties info,
                                         java.lang.String user,
                                         java.lang.String password)
Returns a pooled connection from the specified target pool.
Parameters:
connectionPoolKey - a unique identifier for the target connection pool.
url - the JDBC url that will be used to create connections in this pool.
info - the JDBC properties that will be used to create connections in this pool.
user - the username that will be used for database authentication.
password - the password that will be used for database authentication.
See Also:
generatePoolKey(String, Properties)

returnConnection

public void returnConnection(java.lang.String poolKey,
                             java.sql.Connection connection)
Returns a pooled connection to a connection pool. The poolKey is used by the connection pool manager to identify the target connection pool.

The implementation of this operation should ensure that the returned connection does in fact belong to the specified connection pool.

Parameters:
poolKey - a unique identifier for the target connection pool.
connection - the connection that should be checked in.
See Also:
generatePoolKey(String, Properties)

addConnection

public void addConnection(java.lang.String poolKey,
                          java.sql.Connection connection)
Adds a connection to a connection pool. The poolKey is used by the connection pool manager to identify the target connection pool.

The implementation of this method should not return the connection to the pool after the connection has been added, because the invoking object still holds a reference to that connection. Instead, it is recommended that returning the new connection be the responsibility of of the object that owns the initial reference to the connection.

Parameters:
poolKey - a unique identifier for the target connection pool.
connection - the connection that should be checked in.
See Also:
returnConnection(String, Connection), generatePoolKey(String, Properties)

removeConnection

public void removeConnection(java.lang.String poolKey,
                             java.sql.Connection connection)
Removes a pooled connection from a connection pool. The poolKey is used by the connection pool manager to identify the target connection pool.
Parameters:
poolKey - a unique identifier for the target connection pool.
connection - the connection that should be checked in.
See Also:
generatePoolKey(String, Properties)

generatePoolKey

public java.lang.String generatePoolKey(java.lang.String url,
                                        java.util.Properties info)
Generates a unique pool identifier (poolKey) for the specified JDBC URL and JDBC driver properties. The connection pool manager may be responsible for managing multiple pool instances for each database instance, user, and password combination.
Parameters:
url - the JDBC url that will be used to create connections in this pool.
info - the JDBC properties that will be used to create connections in this pool.
Returns:
a unique pool identifier as a String.

generatePoolKey

public java.lang.String generatePoolKey(java.lang.String url,
                                        java.lang.String user,
                                        java.lang.String password)
Generates a unique pool identifier (poolKey) for the specified JDBC URL and JDBC driver properties. The connection pool manager may be responsible for managing multiple pool instances for each database instance, user, and password combination.
Parameters:
url - the JDBC url that will be used to create connections in this pool.
user - the user that will be used for database authentication.
password - the password that will be used for database authentication.
Returns:
a unique pool identifier as a String.

getMaxPoolSize

public int getMaxPoolSize()
Returns the maximum pool size for connection pools that are managed by this connection pool manager. A maximum pool size of 0 is used by the database transaction class to indicate that pooling has not been enabled.

The MaxPoolSize is typically set as a JVM parameter (for example, java -Djbo.maxpoolsize=10 myApplication note that lower case for the JVM parameter is required) or in the jboserver.properties file (for example, jbo.MaxPoolSize=10 myApplication).

The maximum number of connections supported by a particular driver should be documented with the driver. The default MaxPoolSize is set high enough so that the driver's maximum number of connections will be reached before the default MaxPoolSize is reached.

Returns:
the maximum pool size for this connection pool manager's connection pools.

getInitPoolSize

public int getInitPoolSize()
Returns the initial pool size for connection pools that are managed by this connection pool manager.

The InitPoolSize is typically set as a JVM parameter (for example, java -Djbo.initpoolsize=2 myApplication note that lower case for the JVM parameter is required) or in the jboserver.properties file (for example, jbo.InitPoolSize=2 myApplication).

Returns:
the initial pool size for this connection pool manager's connection pools.

Business Components