码迷,mamicode.com
首页 > 数据库 > 详细

JAVA写简单的数据库连接池

时间:2019-09-06 23:01:06      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:失败   数据库连接池   连接数   array   turn   pre   return   因此   jdbc   

创建数据库连接以及关闭连接是很耗费时间的,并且数据库支持的连接数量也是有限的,当数据库的连接数量达到上限的时候,后续的连接就会失败。因此这里引入了数据库缓冲池。

public class ConnecionPool {
    private int size;
    List<Connection> connections = new ArrayList<>();
    public ConnecionPool(int size){
        this.size=size;
        init();
    }
    public void init(){

        try {
            Class.forName("com.mysql.jdbc.Driver");
            while (size--!=0){

                connections.add(DriverManager.getConnection(jdbc:mysql://127.0.0.1:3306/d数据库名称, 用户名,密码)// );

            }
        }catch (Exception e){
            e.printStackTrace();
        }
    }
    public Connection getConnection(){
        try {//如果没有连接了,线程就等待
            while (connections.isEmpty()){
                this.wait();
            }
        }catch (Exception e){
            e.printStackTrace();
        }
        return connections.remove(0);
    }
    public void returnConntion(Connection connection){
        connections.add(connection);
        this.notifyAll();
    }
}

  

JAVA写简单的数据库连接池

标签:失败   数据库连接池   连接数   array   turn   pre   return   因此   jdbc   

原文地址:https://www.cnblogs.com/fffwhite/p/11478576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!