package org.zxjava.test;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.Driver;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Enumeration;
import java.util.Vector;
public class ConnectionPool {
private String jdbcDriver =
"";
private String dbUrl =
"";
private String dbUsername =
"";
private String dbPassword =
"";
private String testTable =
"";
private int initialConnections =
10;
private int incrementalConnections =
5;
private int maxConnections =
50;
private Vector connections =
null;
/**
* 构造函数
*
* @param jdbcDriver String JDBC 驱动类串
* @param dbUrl String 数据库 URL
* @param dbUsername String 连接数据库用户名
* @param dbPassword String 连接数据库用户的密码
*
*/
public ConnectionPool(String jdbcDriver, String dbUrl, String dbUsername,
String dbPassword) {
this.jdbcDriver = jdbcDriver;
this.dbUrl = dbUrl;
this.dbUsername = dbUsername;
this.dbPassword = dbPassword;
}
/**
* 返回连接池的初始大小
*
* @return 初始连接池中可获得的连接数量
*/
public int getInitialConnections() {
return this.initialConnections;
}
/**
* 设置连接池的初始大小
*
* @param 用于设置初始连接池中连接的数量
*/
public void setInitialConnections(
int initialConnections) {
this.initialConnections = initialConnections;
}
/**
* 返回连接池自动增加的大小 、
*
* @return 连接池自动增加的大小
*/
public int getIncrementalConnections() {
return this.incrementalConnections;
}
/**
* 设置连接池自动增加的大小
* @param 连接池自动增加的大小
*/
public void setIncrementalConnections(
int incrementalConnections) {
this.incrementalConnections = incrementalConnections;
}
/**
* 返回连接池中最大的可用连接数量
* @return 连接池中最大的可用连接数量
*/
public int getMaxConnections() {
return this.maxConnections;
}
/**
* 设置连接池中最大可用的连接数量
*
* @param 设置连接池中最大可用的连接数量值
*/
public void setMaxConnections(
int maxConnections) {
this.maxConnections = maxConnections;
}
/**
* 获取测试数据库表的名字
*
* @return 测试数据库表的名字
*/
public String
getTestTable() {
return this.testTable;
}
/**
* 设置测试表的名字
* @param testTable String 测试表的名字
*/
public void setTestTable(String testTable) {
this.testTable = testTable;
}
/**
*
* 创建一个数据库连接池,连接池中的可用连接的数量采用类成员
* initialConnections 中设置的值
*/
public synchronized void createPool()
throws Exception {
if (connections !=
null) {
return;
}
Driver driver = (Driver) (Class.forName(
this.jdbcDriver).newInstance());
DriverManager.registerDriver(driver);
connections =
new Vector();
createConnections(
this.initialConnections);
System.out.println(
" 数据库连接池创建成功! ");
}
/**
* 创建由 numConnections 指定数目的数据库连接 , 并把这些连接
* 放入 connections 向量中
*
* @param numConnections 要创建的数据库连接的数目
*/
@SuppressWarnings(
"unchecked")
private void createConnections(
int numConnections)
throws SQLException {
for (
int x =
0; x < numConnections; x++) {
if (
this.maxConnections >
0
&&
this.connections.size() >=
this.maxConnections) {
break;
}
try {
connections.addElement(
new PooledConnection(newConnection()));
}
catch (SQLException e) {
System.out.println(
" 创建数据库连接失败! " + e.getMessage());
throw new SQLException();
}
System.out.println(
" 数据库连接己创建 ......");
}
}
/**
* 创建一个新的数据库连接并返回它
*
* @return 返回一个新创建的数据库连接
*/
private Connection
newConnection()
throws SQLException {
Connection conn = DriverManager.getConnection(dbUrl, dbUsername,
dbPassword);
if (connections.size() ==
0) {
DatabaseMetaData metaData = conn.getMetaData();
int driverMaxConnections = metaData.getMaxConnections();
if (driverMaxConnections >
0
&&
this.maxConnections > driverMaxConnections) {
this.maxConnections = driverMaxConnections;
}
}
return conn;
}
/**
* 通过调用 getFreeConnection() 函数返回一个可用的数据库连接 ,
* 如果当前没有可用的数据库连接,并且更多的数据库连接不能创
* 建(如连接池大小的限制),此函数等待一会再尝试获取。
*
* @return 返回一个可用的数据库连接对象
*/
public synchronized Connection
getConnection()
throws SQLException {
if (connections ==
null) {
return null;
}
Connection conn = getFreeConnection();
while (conn ==
null) {
wait(
250);
conn = getFreeConnection();
}
return conn;
}
/**
* 本函数从连接池向量 connections 中返回一个可用的的数据库连接,如果
* 当前没有可用的数据库连接,本函数则根据 incrementalConnections 设置
* 的值创建几个数据库连接,并放入连接池中。
* 如果创建后,所有的连接仍都在使用中,则返回 null
* @return 返回一个可用的数据库连接
*/
private Connection
getFreeConnection()
throws SQLException {
Connection conn = findFreeConnection();
if (conn ==
null) {
createConnections(incrementalConnections);
conn = findFreeConnection();
if (conn ==
null) {
return null;
}
}
return conn;
}
/**
* 查找连接池中所有的连接,查找一个可用的数据库连接,
* 如果没有可用的连接,返回 null
*
* @return 返回一个可用的数据库连接
*/
private Connection
findFreeConnection()
throws SQLException {
Connection conn =
null;
PooledConnection pConn =
null;
Enumeration enumerate = connections.elements();
while (enumerate.hasMoreElements()) {
pConn = (PooledConnection) enumerate.nextElement();
if (!pConn.isBusy()) {
conn = pConn.getConnection();
pConn.setBusy(
true);
if (!testConnection(conn)) {
try {
conn = newConnection();
}
catch (SQLException e) {
System.out.println(
" 创建数据库连接失败! " + e.getMessage());
return null;
}
pConn.setConnection(conn);
}
break;
}
}
return conn;
}
/**
* 测试一个连接是否可用,如果不可用,关掉它并返回 false
* 否则可用返回 true
*
* @param conn 需要测试的数据库连接
* @return 返回 true 表示此连接可用, false 表示不可用
*/
private boolean testConnection(Connection conn) {
try {
if (testTable.equals(
"")) {
conn.setAutoCommit(
true);
}
else {
Statement stmt = conn.createStatement();
stmt.execute(
"select count(*) from " + testTable);
}
}
catch (SQLException e) {
closeConnection(conn);
return false;
}
return true;
}
/**
* 此函数返回一个数据库连接到连接池中,并把此连接置为空闲。
* 所有使用连接池获得的数据库连接均应在不使用此连接时返回它。
*
* @param 需返回到连接池中的连接对象
*/
public void returnConnection(Connection conn) {
if (connections ==
null) {
System.out.println(
" 连接池不存在,无法返回此连接到连接池中 !");
return;
}
PooledConnection pConn =
null;
Enumeration enumerate = connections.elements();
while (enumerate.hasMoreElements()) {
pConn = (PooledConnection) enumerate.nextElement();
if (conn == pConn.getConnection()) {
pConn.setBusy(
false);
break;
}
}
}
/**
* 刷新连接池中所有的连接对象
*
*/
public synchronized void refreshConnections()
throws SQLException {
if (connections ==
null) {
System.out.println(
" 连接池不存在,无法刷新 !");
return;
}
PooledConnection pConn =
null;
Enumeration enumerate = connections.elements();
while (enumerate.hasMoreElements()) {
pConn = (PooledConnection) enumerate.nextElement();
if (pConn.isBusy()) {
wait(
5000);
}
closeConnection(pConn.getConnection());
pConn.setConnection(newConnection());
pConn.setBusy(
false);
}
}
/**
* 关闭连接池中所有的连接,并清空连接池。
*/
public synchronized void closeConnectionPool()
throws SQLException {
if (connections ==
null) {
System.out.println(
" 连接池不存在,无法关闭 !");
return;
}
PooledConnection pConn =
null;
Enumeration enumerate = connections.elements();
while (enumerate.hasMoreElements()) {
pConn = (PooledConnection) enumerate.nextElement();
if (pConn.isBusy()) {
wait(
5000);
}
closeConnection(pConn.getConnection());
connections.removeElement(pConn);
}
connections =
null;
}
/**
* 关闭一个数据库连接
*
* @param 需要关闭的数据库连接
*/
private void closeConnection(Connection conn) {
try {
conn.close();
}
catch (SQLException e) {
System.out.println(
" 关闭数据库连接出错: " + e.getMessage());
}
}
/**
* 使程序等待给定的毫秒数
*
* @param 给定的毫秒数
*/
private void wait(
int mSeconds) {
try {
Thread.sleep(mSeconds);
}
catch (InterruptedException e) {
}
}
/**
*
* 内部使用的用于保存连接池中连接对象的类
* 此类中有两个成员,一个是数据库的连接,另一个是指示此连接是否
* 正在使用的标志。
*/
class PooledConnection {
Connection connection =
null;
boolean busy =
false;
public PooledConnection(Connection connection) {
this.connection = connection;
}
public Connection
getConnection() {
return connection;
}
public void setConnection(Connection connection) {
this.connection = connection;
}
public boolean isBusy() {
return busy;
}
public void setBusy(
boolean busy) {
this.busy = busy;
}
}
}
转载于:https://www.cnblogs.com/bilaisheng/p/10210959.html
相关资源:JAVA上百实例源码以及开源项目