A good JDBC connection pool tutorial (with a specific example)

Source: Internet
Author: User
Tags manage connection
1. Preface

Database applications are often used in many software systems and are indispensable for developing large systems. However, if the database resources are not well managed (for example, resources such as the database cursors (resultset), statement, and connection) are not recovered in time), system stability is often directly caused. This type of instability is not only caused by the database or the system itself. It will be gradually revealed only when the system is officially used and with the increase of traffic and users.

In B's Java-based system, JDBC is the main way for programmers to deal with databases and provides complete database operation methods and interfaces. However, considering the applicability of the specifications, JDBC only provides the most direct database operation specifications, and manages database resources, such as physical connection management and buffering. It is expected that a third-party Application Server).

This article introduces the relevant database connection pool mechanism based on the JDBC specification, and introduces related implementation technologies for effective management of database resources in a simple way.

2. connection pool technical background

2.1 JDBC

JDBC is a specification that complies with the JDBC interface specification. Each database manufacturer implements its own driver, as shown in:

When an application obtains a database connection, it needs to specify the type of driver as a URL. After obtaining a specific connection, it can operate different types of databases according to fixed interfaces, such: obtain statement, execute SQL to obtain resultset, and so on, as shown in the following example:

Import java. SQL .*;
...

.. Drivermanager. registerdriver (
New Oracle. JDBC.
Driver. oracledriver ());
Connection dbconn = drivermanager. getconnection
("JDBC: oracle: thin: @ 127.0.0.1: 1521:
Oracle, username, password ");
Statement ST = dbconn. createstatement ();
Resultset rs = st.exe cutequery (
"Select * From demo_table ");
...
Some data source operation in herers. Close ();
St. Close (); dbconn. Close ();
 

After completing data operations, you must also close all the database resources involved. Although this has no impact on the logic of the application, it is a key operation. The above is a simple example. If many if-Else and exception are involved, the management of resources will inevitably be sparse. Like the memory leakage in C, the java system will also face a crash. Therefore, the management of database resources depends on the application system itself, which is a hidden danger of insecurity and instability.

2.2jdbc connection pool

The standard JDBC interface does not provide resource management methods. Therefore, the application is responsible for default resource management. Although in the JDBC specification, it is often mentioned that the resource is closed/recycled and its rational use. However, the safest way is to provide effective management means for applications. Therefore, JDBC provides a management standard interface (Connection pooling) implemented by the database manufacturer for the third-party application server ). The connection pool is introduced to manage database resources.

The most common JDBC resources include:

-Connection: database connection.

-Statement: Session Declaration.

-Resultset: result set cursor.

There are the following relationships:

This is a kind of 'parent-parent-sub' relationship. The management of connection is the management of database resources. For example, to determine whether a database connection times out, you need to determine whether its (all) Sub-statement times out. Similarly, You need to determine whether all relevant resultset times out; before closing the connection, you must disable all related statement and resultset.

Therefore, the connection pool not only manages connections, but also involves statement and resultset.

2.3 connection pool and Resource Management

The connectionpool uses the buffer pool mechanism to control and manage connection, statement, and resultset within a certain range. The resources of any database are limited. If used up, more data services cannot be obtained.

In most cases, resource depletion is not due to the high normal load of the application, but to the program.

In actual work, data resources are often bottlenecks, and different applications will access the same data source. When an application consumes database resources, other applications cannot run normally. Therefore, the first connectionpool task is to limit the maximum resources that each application or system can possess. That is, determine the size of the Connection Pool (poolsize ).

The second task of connectionpool: resources are used to the maximum extent within the poolsize range of the Connection Pool, shortening the use cycle of database access. In many databases, connection is not the smallest unit of resources. Controlling statement resources is more important than connection. Take oracle as an example:

Each request for a connection will establish a communication connection on the physical network (such as the TCP/IP network), and a certain number of statement can be applied for this connection. The number of active statement provided by the same connection can reach several hundred. While saving network resources, It shortens the cycle of each session (establishing a physical connection is a time-consuming operation ). However, in general applications, most of the operations follow the 2.1 example. In this case, 10 program calls will generate 10 physical connections, and each statement occupies one physical connection separately, this is a great waste of resources. Connectionpool can solve this problem, so that dozens or hundreds of statement occupy only the same physical connection, to take advantage of the original advantages of the database.

The connectionpool effectively manages resources, and the total number of statement obtained by the application reaches:

(Concurrent physical connections) x (number of statement quantities available for each connection)

For example, if a database can establish 200 physical connections and each connection can provide 250 Statement at the same time, the total number of concurrent statement provided by the connectionpool for the application is: 200x250 = 50,000. This is a concurrent number, and few systems break through this magnitude. At the beginning of this section, it is pointed out that resource depletion is related to the direct management of applications.

The optimal management of resources relies heavily on the availability of the database's own JDBC driver. The JDBC driver of some databases does not support the logical connection between connection and statement. For example, sqlserver, we can only wait for her own updated version.

The application, release, recovery, sharing and synchronization of resources are complex and precise. Therefore, another function of connectionpool is to encapsulate these operations to provide simple calling interfaces for applications without changing the application style.

3. Implementation of simple JDBC connection pool

According to the original mechanism in Chapter 2, snap-connectionpool (a simple and fast connection pool tool) implements effective management of database resources in the connection pool according to some JDBC specifications.

3.1 System Description

In the JDBC specification, an application uses a driver interface to directly evaluate database resources. To effectively and reasonably manage resources, a connection pool is added between the application and JDBC driver: Snap-connectionpool. In addition, through the object-oriented mechanism, most operations in the connection pool are transparent. See the snap-connectionpool system:

As shown in the figure, through the implementation of some JDBC resource object interfaces (connection, statement, resultset), three logical resource objects are generated in the snap-connectionpool: pooledconnection, pooledstatement, and pooledresultset. They are also the main management operation objects of the connection pool and inherit the corresponding subordination in JDBC. Such a system has the following features:

-Transparency. Provide resource management services without changing the original JDBC driver interface of the application. The application system, like the original JDBC, uses the logical object resources provided by the connection pool. Simplified application connection pool transformation.

-Resource encapsulation. Complex resource management is encapsulated in the snap-connectionpool without interference from the application system. The reliability and security of management operations are guaranteed by the connection pool. Application interference (for example, proactively disabling resources) only plays a role in optimizing system performance, and missing operations will not have a negative impact.

-Use resources properly. According to the resource subordination in JDBC, the snap-connectionpool not only caches the connection, but also processes the statement. As described in section 2.3, reasonable use of the relationship between connection and statement can be used to a greater extent. Therefore, the snap-connectionpool encapsulates connection resources and provides more statement resources for the application system by managing pooledconnection internally.

-Resource chain management. Snap-connectionpool contains three logical objects that inherit the subordination between the corresponding objects in JDBC. In internal management, chain management is also conducted according to the subordination. For example, to determine whether a connection times out, you need to determine whether the statement is active Based on the included statement; to determine whether the statement is also based on the degree of activity of the resultset.

3.2 connection pool centralized management connectionmanager

Connectionpool is the connection pool object of snap-connectionpool. Within the snap-connectionpool, you can specify multiple connection pools (connectionpool) to serve applications. Connectionmanager manages all the connection pools. Each connection pool is named differently. Use the configuration file to adapt to different database types. As shown in:

Connectionmanager allows you to manage multiple connection pools at the same time and provides a one-on-one management interface. In the application system, connectionmanager and related configuration files can be used to scatter the database configuration information (including the database name, user, password, and other information) in their respective applications ), in a single file. This facilitates system maintenance.

3.3 connection pool usage example

For the example of 2.1 Standard JDBC, use the connection pool. The result is as follows:

Import java. SQL .*;
Import net. snapbug. util. dbtool .*;
...
.. Connectionpool dbconn = connectionmanager
. Getconnectionpool ("testoracle ");
Statement ST = dbconn. createstatement ();
Resultset rs = st.exe cutequery (
"Select * From demo_table ");
...
Some data source operation
In herers. Close (); ST. Close ();
 

In this example, the snap-connectionpool encapsulates the application's connection management. As long as you change the method of JDBC to obtain the connection, to obtain the connection pool (connectionpool) (in bold), other data operations can not be modified. In this way, the snap-connectionpool can help the application effectively manage database resources. If the application ignores the release of the final resource: Rs. Close () and ST. Close (), the connection pool will be automatically reclaimed through the time-out mechanism.

4. Summary

Both snap-connectionpool and other database connection pools should have the following basic functions:

-Source database resource protection

-Make full use of valid database resources

-Simplified the database interface of the application and closed resource management.

-Automatic collection and sorting of application legacy resources to improve resource reuse.

On this premise, applications can devote more energy to their own business logic. Database resources are no longer the bottleneck of the system.

Note: you can download the snap-connectionpool and more detailed documents at www.snapbug.net for free.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.