(五)优化数据库连接

 

数据库在建立连接和释放连接都会消耗较大的cpu资源,为了性能,引入连接池的概念(五)优化数据库连接_第1张图片

 

public class DbUtil implements DataSource{


	
	private static DbUtil dbUtil = new DbUtil();
	
	public static DbUtil getInstance(){
		return dbUtil;
	} 
	
	private DbUtil(){
		
	}
	
	public static int POOL_MAX = 5;//最大连接数
	
	public Connection connection = null;//表示当前的connection
	
	private LinkedList pool = new LinkedList();//数据库连接池
	
	public Connection getConnection(){
		
		try {
			if(pool.size() == 0){
				Class.forName(dbDriver);
				for(int i=0; i< POOL_MAX;i++){
					pool.add(DriverManager.getConnection(dbUrl, dbUser, dbPassword));
				}
				System.out.println("初始化连接池,成功建立" + POOL_MAX + "个数据库连接放到连接池中!");
			}
			connection = pool.remove(0);//从连接池中取出一个并返回
			
		} catch (ClassNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return connection;
	}
	
	/**
	 * 释放数据库链接到连接池中
	 */
	public void releaseConnection(){
		//放回到连接池中
		pool.add(connection);
		System.out.println("成功归还连接到连接池,当前连接池有" + pool.size() + "个空闲链接!");
	}
	
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		DbUtil dbUtil = new DbUtil();
		dbUtil.getConnection();
	}
	@Override
	public PrintWriter getLogWriter() throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}
	@Override
	public int getLoginTimeout() throws SQLException {
		// TODO Auto-generated method stub
		return 0;
	}
	@Override
	public Logger getParentLogger() throws SQLFeatureNotSupportedException {
		// TODO Auto-generated method stub
		return null;
	}
	@Override
	public void setLogWriter(PrintWriter out) throws SQLException {
		// TODO Auto-generated method stub
		
	}
	@Override
	public void setLoginTimeout(int seconds) throws SQLException {
		// TODO Auto-generated method stub
		
	}
	@Override
	public boolean isWrapperFor(Class arg0) throws SQLException {
		// TODO Auto-generated method stub
		return false;
	}
	@Override
	public  T unwrap(Class arg0) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}
	@Override
	public Connection getConnection(String username, String password)
			throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

}

 这里使用了饿汉式单例模式,只允许创造一个dbutil对象

 

你可能感兴趣的:(封装一个自己的数据库框架)