JDBC及封装,DBUtil使用,自定义连接池,c3p0和dbcp连接池使用

本篇包括如下内容:

  • ** 1,JDBC及封装,**
  • 2,DBUtil使用,
  • 3,自定义连接池,
  • 4,c3p0和dbcp连接池使用

1,JDBC及封装(Java DataBase Connectivity)
  • 1.1, JDBC的使用
  • 注意使用前需要先引入相应的包
  • 在查询的时候用PreparedStatement这个比较安全,如果用Statement有插入攻击的危险
try {
    //1,注册驱动
    Class.forName("com.mysql.jdbc.Driver");
    
    //2,获取连接
    Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/ivanl?autoReconnect=true&useSSL=false&characterEncoding=utf-8", "root", "0.");
    
    //3,通过连接进行查询
    PreparedStatement preparedStatement = connection.prepareStatement("select * from t_product");
    ResultSet set = preparedStatement.executeQuery();
    while(set.next()){
        System.out.println(set.getString("name") + "  " + set.getDouble("price"));
    }
    
    //4,关闭资源
    set.close();
    preparedStatement.close();
    connection.close();
    
} catch (Exception e) {
    e.printStackTrace();
}
  • 1.2, JDBC的自定义封装
  • 既然是对jdbc的封装,也需要先引入必要的包
  • 因为驱动注册和获取连接池以及关闭资源所有的数据库操作都是一致的,所以驱动注册和获取连接池直接用静态方法进行封装,只读取一次,关闭资源传入参数进行关闭

读取配置文件资源的时候,如果是java项目,有两种方式:Properties和ResourceBundle,代码有体现

package im.jdbcutil;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ResourceBundle;

public class JDBCUtil {
    
    public static String driver;
    public static String url;
    public static String username;
    public static String pwd;
  
    static{
        try {
            /*
            Properties properties = new Properties();
            FileInputStream inputStream = new FileInputStream("src/database.properties");
            properties.load(inputStream);
            driver = properties.getProperty("driverClass");
            url = properties.getProperty("url");
            username = properties.getProperty("user");
            pwd = properties.getProperty("password");
            */

            ResourceBundle bundle = ResourceBundle.getBundle("database");
            driver = bundle.getString("driverClass");
            url = bundle.getString("url");
            username = bundle.getString("user");
            pwd = bundle.getString("password");
            
        } catch (Exception e1) {
            e1.printStackTrace();
        }
    }

    public static Connection getConnection(){
        try {
            //1,注册驱动
            Class.forName("com.mysql.jdbc.Driver");
            //2,获取连接
            return DriverManager.getConnection("jdbc:mysql://localhost:3306/ivanl?autoReconnect=true&useSSL=false&characterEncoding=utf-8", "root", "0.");
        } catch (Exception e) {
            System.out.println("获取连接失败");
            e.printStackTrace();
            throw new RuntimeException(e);
        }
    }
    
    public static void closeAll(Connection connection, PreparedStatement statement, ResultSet resultSet){
        try {
            if (resultSet != null) {
                resultSet.close();
            }
        } catch (Exception e) {
            System.out.println("结果集资源释放失败");
            e.printStackTrace();
        }
        
        try {
            if (statement != null) {
                statement.close();
            }
        } catch (Exception e) {
            System.out.println("sql声明资源释放失败");
            e.printStackTrace();
        }
        
        try {
            if (connection != null) {
                connection.close();
            }
        } catch (Exception e) {
            System.out.println("连接集资源释放失败");
            e.printStackTrace();
        }
    }
}

数据库配置文件database.properties内容:

driverClass = com.mysql.jdbc.Driver
url = jdbc:mysql://localhost:3306/test01?autoReconnect=true&useSSL=false&characterEncoding=utf-8
user = root
password = 0.

2,DBUtil使用(对JDBC的封装)
  • DBUtil创建QueryRunner的时候有两种方式:空参构建和数据库构建

  • DBUtil有很多种类型的结果集,比如返回数组,字典,模型等等,文档中都有比较详细介绍,如果不太懂的话可以看一下文档

  • DBUtil既然架包,那么在使用的时候必然需要先导包

  • 2.1,空参构建方式,其中在执行语句的时候需要传入连接,我这里直接使用1.2中封装方法获取连接,可以保证只获取一次*
Connection connection = JDBCUtil.connection;
String sqlStr = "insert into t_ivanl001 (name, age, num) values (?, ?, ?)";
QueryRunner queryRunner = new QueryRunner();
try {
     Object[] params = {name, age, num};
     queryRunner.update(connection, sqlStr, params);
} catch (SQLException e) {
    System.out.println("数据插入失败!");
    e.printStackTrace();
} 
DbUtils.closeQuietly(connection);
  • 2.2,数据库构建构建方式,构建时候需要直接传入一个数据源,数据源可以通过c3p0或dbcp连接池获得,这是后面的内容,这里先不涉及*
QueryRunner runner = new QueryRunner(DBCPUtil.getDataSource());

try {
     List<Product> products = runner.query("select * from product", new BeanListHandler<Product>(Product.class));
     System.out.println(products);
} catch (SQLException e) {
    e.printStackTrace();
} finally {
    
}

3,自定义连接池(使用装饰者模式进行加强)
//1,自定义连接池
/*
 * 对JDBC连接的封装,也就是自定义连接池
 * 其他一些方法也需要重写,但是不需要任何改变,所以这里就没有贴出来
 */
public class JDBCDatasource implements DataSource {
    private static LinkedList<Connection> connections = new LinkedList<Connection>();
    //往连接池中添加连接
    static{
        for(int i=0;i<5;i++){
            Connection connection = JDBCUtil.getConnection();
            JDBCConnection theConnection = new JDBCConnection(connections, connection);
            connections.add(theConnection);
        }
    }
    //重写这一个方法,如果没有增强过connection的话,需要调用这个方法归还连接到连接池中
    @Override
    public Connection getConnection() throws SQLException {
        if (connections.size() == 0) {
            for(int i=0;i<5;i++){
                Connection connection = JDBCUtil.getConnection();
                JDBCConnection theConnection = new JDBCConnection(connections, connection);
                connections.add(theConnection);
            }
        }
        return connections.removeFirst();
    }
     //新增一个方法
    public void returnConnection(Connection connection){
        connections.add(connection);
    }
}

//2,自定义连接类,实现相应的方法,并在自定义的连接池中进行包装,具体看1中的代码
//其他一些不需要修改的覆盖方法这里不再贴出
public class JDBCConnection implements Connection {
    private Connection connection;
    private LinkedList<Connection> connections;
    public JDBCConnection(List<Connection> connections, Connection connection) {
        this.connections = (LinkedList<Connection>) connections;
        this.connection = connection;
    }
    //如果想要在关闭的时候添加到连接池,那么需要把连接池传进来,传进来最好的时候就是创建的时候
    @Override
    public void close() throws SQLException {
        System.out.println("here here!");
        connections.add(connection);
    }
    @Override
    public PreparedStatement prepareStatement(String sql) throws SQLException {
        return connection.prepareStatement(sql);
    }
}

//测试
JDBCDatasource datasource = new JDBCDatasource();
Connection connection = null;
PreparedStatement preparedStatement = null;
ResultSet resultSet = null;
try {
    connection = datasource.getConnection();
    preparedStatement = connection.prepareStatement("select * from product;");
    resultSet = preparedStatement.executeQuery();
    while(resultSet.next()){
        System.out.println(resultSet.getString("pname"));
    }
} catch (SQLException e) {
    e.printStackTrace();
} finally {
    //这行代码中封装了connection.close()方法
    JDBCUtil.closeAll(connection, preparedStatement, resultSet);
}
4,c3p0和dbcp连接池使用(连接池可以提高数据库使用效率)
  • 4.1,c3p0

需要导入包和配置文件
使用代码如下:
配合DBUtils使用的时候可以直接传入连接池进行使用,也可以传入连接使用,见上面的DBUtils的使用

//也可以把c3p0封装后直接获取连接池和连接,我这里直接使用
Connection connection = null;
PreparedStatement preparedStatement = null;
ResultSet resultSet = null;

DataSource dataSource = new ComboPooledDataSource();
try {
    connection = dataSource.getConnection();
    String sqlStr = "select * from product";
    preparedStatement = connection.prepareStatement(sqlStr);
    resultSet = preparedStatement.executeQuery();
    
    while(resultSet.next()){
        System.out.println(resultSet.getString("pname"));
    }
} catch (SQLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} finally {
    JDBCUtil.closeAll(connection, preparedStatement, resultSet);
}

  • 4.2,dbcp

需要导入包和配置properties文件
使用代码如下:

Connection connection = null;
PreparedStatement preparedStatement = null;
ResultSet resultSet = null;

connection = DBCPUtil.getConnection();
try {
    preparedStatement = connection.prepareStatement("select * from product");
    resultSet = preparedStatement.executeQuery();
    
    while(resultSet.next()){
        System.out.println(resultSet.getString("pname"));
    }
} catch (SQLException e) {
    e.printStackTrace();
} finally {
    JDBCUtil.closeAll(connection, preparedStatement, resultSet);
}

其中上面用到的DBCPUtilde封装如下:

package im.dbcputils;

import java.io.InputStream;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Properties;

import javax.sql.DataSource;

import org.apache.commons.dbcp.BasicDataSourceFactory;

/*
 * 这里是使用默认的配置标准进行配置后读取文件
 */
public class DBCPUtil {

    private static DataSource dataSource;
    
    static{
        try {
            InputStream inputStream = DBCPUtil.class.getClassLoader().getResourceAsStream("database.properties");
            Properties properties = new Properties();
            properties.load(inputStream);
            dataSource = BasicDataSourceFactory.createDataSource(properties);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
    
    public static DataSource getDataSource() {
        return dataSource;
    }
    
    public static Connection getConnection() {
        try {
            return dataSource.getConnection();
        } catch (SQLException e) {
            e.printStackTrace();
        }
        return null;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容