有了连接池,可以同时建立多个连接,增加了程序的开发效率;
使用连接池的步骤:
1,导入包commons-dbutils-1.3.jar
2,建立连接(注意:本示例将连接数据库的常量放到了属性文件中)
(1)加载数据库的驱动类
private static DataSource dataSource;//带有连接池的数据源
static{
//加载数据库连接参数的配置
Properties props=new Properties();
try{
props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("jdbc.properties"));
//加载数据库的驱动类
Class.forName(props.getProperty("driverClass"));
//创建数据源
DataSource ds = DataSources.unpooledDataSource(props.getProperty("url"),
props.getProperty("user"),
props.getProperty("password"));
//创建带连接池的数据源
dataSource =DataSources.pooledDataSource(ds);
}catch (IOException e) {
System.err.println("在classpath下未找到jdbc.properties文件!!!");
e.printStackTrace();
} catch (ClassNotFoundException e) {
System.err.println("在classpath下未找到数据库的驱动类!!!");
e.printStackTrace();
} catch (SQLException e) {
System.err.println("创建数据源失败!!!");
e.printStackTrace();
}
}
/**
* 获取带连接池的数据源
* @return 数据源对象
*/
public static DataSource getDataSource(){
return dataSource;
}
/**
* 获取数据库的一个连接
* @return 数据库连接对象
* @throws SQLException 如果获取失败,抛出SQLException
*/
public static Connection getConnection() throws SQLException{
return dataSource.getConnection();
}