-
DBCP JAVA 连接池
- package com.sinoglobal.db;
-
- import java.sql.Connection;
- import java.sql.DriverManager;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.sql.Statement;
- import java.util.Locale;
- import java.util.ResourceBundle;
-
- import org.apache.commons.dbcp.ConnectionFactory;
- import org.apache.commons.dbcp.DriverManagerConnectionFactory;
- import org.apache.commons.dbcp.PoolableConnectionFactory;
- import org.apache.commons.dbcp.PoolingDriver;
- import org.apache.commons.pool.ObjectPool;
- import org.apache.commons.pool.impl.GenericObjectPool;
-
- @SuppressWarnings("unchecked")
- public class PoolManager {
- private static String driver = "net.sourceforge.jtds.jdbc.Driver";
- private static String url = "";
- private static String name = "sa";
- private static String password = "";
- private static Class driverClass = null;
- private static ObjectPool connectionPool = null;
- private static String poolname = "";
- private static ResourceBundle rb;
-
-
- private static synchronized void initDataSource() {
- if (driverClass == null) {
- try {
- driverClass = Class.forName(driver);
- } catch (ClassNotFoundException e) {
- e.printStackTrace();
- }
- }
- }
-
-
- private static void loadProperties() {
- rb = ResourceBundle.getBundle("config", Locale.getDefault());
- driver = rb.getString("jdbc.sql.driverClassName");
- url = rb.getString("jdbc.sql.url");
- name = rb.getString("jdbc.sql.username");
- password = rb.getString("jdbc.sql.password");
- poolname = rb.getString("jdbc.sql.poolname");
- }
-
-
- public static void StartPool() {
- loadProperties();
- initDataSource();
- if (connectionPool != null) {
- ShutdownPool();
- }
- try {
- connectionPool = new GenericObjectPool(null);
- ConnectionFactory connectionFactory = new DriverManagerConnectionFactory(
- url, name, password);
- new PoolableConnectionFactory(connectionFactory, connectionPool,
- null, null, false, true);
- Class.forName("org.apache.commons.dbcp.PoolingDriver");
- PoolingDriver driver = (PoolingDriver) DriverManager
- .getDriver("jdbc:apache:commons:dbcp:");
- driver.registerPool(poolname, connectionPool);
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-
-
- public static void ShutdownPool() {
- try {
- PoolingDriver driver = (PoolingDriver) DriverManager
- .getDriver("jdbc:apache:commons:dbcp:");
- driver.closePool(poolname);
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
-
-
- public static Connection getConnection() {
- Connection conn = null;
- if (connectionPool == null)
- StartPool();
- try {
- conn = DriverManager.getConnection("jdbc:apache:commons:dbcp:"
- + poolname);
- } catch (SQLException e) {
- e.printStackTrace();
- }
- return conn;
- }
-
-
- public static Connection getConnection(String name) {
- return getConnection();
- }
-
-
- public static void freeConnection(Connection conn) {
- if (conn != null) {
- try {
- conn.close();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- }
-
-
- public static void freeConnection(String name, Connection con) {
- freeConnection(con);
- }
-
-
- public static void main(String[] args) {
- try {
- Connection conn = PoolManager.getConnection();
- System.out.println(conn.isClosed());
- if (conn != null) {
- Statement statement = conn.createStatement();
- ResultSet rs = statement
- .executeQuery("select * from test2..log");
- int c = rs.getMetaData().getColumnCount();
- while (rs.next()) {
- System.out.println();
- for (int i = 1; i <= c; i++) {
- System.out.print(rs.getObject(i));
- }
- }
- rs.close();
- }
- PoolManager.freeConnection(conn);
- } catch (SQLException e) {
- e.printStackTrace();
- }
-
- }
-
- }
-
相关阅读:
面向对象——多态
面向对象——继承
面向对象—封装
数组
控制语句
认识Java
出入境大厅流程
2021上半年感想
记录2020
读后感《从三分钟热度到一万个小时》
-
原文地址:https://www.cnblogs.com/zfswff/p/5006884.html
Copyright © 2020-2023
润新知