其实就是一个容器(集合),存放数据库连接的容器。当系统初始化后,容器被创建,容器中会申请一些连接对象,当用户来访问数据库时,从容器中获取连接对象,用户访问完之后,会将连接对象归还给容器。Java为数据库连接池提供了公共的接口:javax.sql.DataSource,各个厂商需要让自己的连接池实现这个接口。这样应用程序可以方便的切换不同厂商的连接池。
DBCP也是一个开源的连接池,是Apache Common成员之一,在企业开发中也比较常见,tomcat内置的连接池。
链接地址
链接地址
下载并解压选择jar文件
将jar包导入项目中(复制粘贴)
鼠标放在jar包上面,右击鼠标显示以下后点击红色框中的选项即可以加入项目中了。
BasicDataSource dataSource = new BasicDataSource();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://localhost:3306/demo");
dataSource.setUsername("root");
dataSource.setPassword("112112");
// 初始化连接池中连个的个数
dataSource.setInitialSize(5);
// 最大活动数
dataSource.setMaxActive(10);
driverClassName = com.mysql.jdbc.Driver
url = jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf8
username = root
password = 112112
# 初始化连接
initialSize=10
# 最大连接数量
maxActive=50
# 最大空闲连接
maxIdle=20
# 最小空闲连接
minIdle=5
# 超时等待时间以毫秒为单位
maxWait=60000
首先我们创建一个表,并查看(看清楚属于那个数据库)
CREATE TABLE IF NOT EXISTS employee(
id int(11) auto_increment PRIMARY key,
name VARCHAR(22),
age int(4),
money int(20)
);
INSERT into employee VALUES(null,"张三",20,3650);
INSERT into employee VALUES(null,"李四",30,4502);
INSERT into employee VALUES(null,"王五",30,3650);
INSERT into employee VALUES(null,"麻子",50,8885);
INSERT into employee VALUES(null,"小红",20,4445);
直接在代码里面配置连接数据库信息。
public class DbcpExample {
public static void main(String[] args) throws SQLException {
// 创建 BasicDataSource 对象
BasicDataSource dataSource = new BasicDataSource();
// 配置数据库连接信息
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://localhost:3306/yjg_db03?characterEncoding=utf8");
dataSource.setUsername("root");
dataSource.setPassword("yjg");
// 获取数据库连接
try (Connection connection = dataSource.getConnection()) {
// 执行数据库操作
// 创建 Statement 对象
Statement statement = connection.createStatement();
// 执行查询语句
String sql = "SELECT * FROM employee;";
ResultSet rs = statement.executeQuery(sql);
// 处理查询结果
while (rs.next()){
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
int money = rs.getInt("money");
System.out.println("编号:" + id + ", 姓名:" + name + ", 年龄:" +
age + ", 工资:" + money);
}
System.out.println("操作成功!");
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭连接池
dataSource.close();
}
}
}
配置文件内容:yjg_db03是我要使用的数据库,也就是我表所在的位置
driverClassName = com.mysql.jdbc.Driver
url = jdbc:mysql://localhost:3306/yjg_db03?useUnicode=true&characterEncoding=UTF-8
username= root
password = yjg
# 初始化连接
initialSize=10
# 最大连接数量
maxActive=50
# 最大空闲连接
maxIdle=20
# 最小空闲连接
minIdle=5
# 超时等待时间以毫秒为单位
maxWait=60000
DBCPUtils 是我们的工具类,将连接和关闭封装了起来,这样我们就很方便进行关闭连接操作。
class test{
public static void main(String[] args) throws SQLException {
Connection con=DBCPUtils.getConnection();
String sql = "SELECT * FROM employee;";
PreparedStatement pre=con.prepareStatement(sql);
ResultSet rs = pre.executeQuery();
// 处理查询结果
while (rs.next()){
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
int money = rs.getInt("money");
System.out.println("编号:" + id + ", 姓名:" + name + ", 年龄:" +
age + ", 工资:" + money);
}
System.out.println("操作成功!");
DBCPUtils.closeAll(rs,pre,con);
}
}
public class DBCPUtils {
private static final String dbconfig = "jdbc.properties";
private static final Properties pro = new Properties();
private static DataSource dataSource;
static {
/**
* 通过 Thread.currentThread().getContextClassLoader() 可以获取当前线程的上下文类加载器。
* 类加载器是Java中负责加载类文件和资源文件的机制,它负责从类路径(Classpath)中加载类和资源。
*
* getResourceAsStream(dbconfig) 是一个用于获取资源的方法。它的参数 dbconfig 是一个字符串,
* 用于指定要获取的资源的路径。通常情况下,资源文件位于类路径下,可以通过类加载器加载。该方法会返回一个 InputStream 对象
* ,可以通过该对象读取资源的内容。
* */
InputStream in =
Thread.currentThread().getContextClassLoader().getResourceAsStream(dbconfig);
try {
//pro.load(in) 的作用是将输入流中的内容解析为键值对,并存储在 pro 对象中,以供后续使用
pro.load(in);
//createDataSource() 是 BasicDataSourceFactory 类的静态方法,用于根据提供的属性配置(pro 参数)创建一个数据源对象。
dataSource = BasicDataSourceFactory.createDataSource(pro);
} catch (Exception e) {
e.printStackTrace();
}
}
// 获取连接
public static Connection getConnection() throws SQLException {
return dataSource.getConnection();
}
// 释放资源
public static void closeAll(ResultSet re, PreparedStatement pre, Connection con)
{
if (re != null){
try {
re.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
if (pre != null){
try {
pre.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
if (con != null){
try {
con.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
}
}
错误1
可能出现以下错误,这个异常通常是由于缺少 Apache Commons Logging 库的类文件所导致的。要解决这个问题,导入包即可。
jar包地址
解压后选择这个即可
NullPointerException异常
请确保属性文件的路径是正确的,并且属性文件存在且格式正确。
检查属性文件中相关的连接配置是否正确。如果属性文件中包含与数据库连接相关的属性,如数据库URL、用户名和密码等,请确保这些属性的命名和格式与实际数据库配置相匹配。