c3p0连接池使用步骤
- 导入jar包
c3p0-0.9.1.2.jar
- 编写
c3p0-config.xml
配置文件,配置对应参数 - 将配置文件放在src目录下
- 创建连接池对象
ComboPooledDataSource
,使用默认配置或命名配置 - 从连接池中获取连接对象
- 使用连接对象操作数据库
- 关闭资源
- jar包下载:
链接:https://pan.baidu.com/s/1ElLSnOfgKeb7lOOinxfxvw
提取码:wq9z
复制这段内容后打开百度网盘手机App,操作更方便哦 - 编写配置文件:
<c3p0-config>
<!-- 使用默认的配置读取连接池对象 -->
<default-config>
<!-- 数据库连接参数 -->
<property name="driverClass">com.mysql.jdbc.Driver</property>
<property name="jdbcUrl">jdbc:mysql://localhost:3306/db1</property>
<property name="user">root</property>
<property name="password">root</property>
<!-- 连接池参数 -->
<property name="initialPoolSize">5</property> <!-- 初始连接数量 -->
<property name="maxPoolSize">10</property> <!-- 最大连接数量 -->
<property name="checkoutTimeout">3000</property> <!-- 连接池没有连接最长等待时间 -->
<property name="maxIdleTime">2000</property> <!-- 连接池中的空闲连接多久没有使用就会回收。默认是0,0表示不回收 -->
</default-config>
<named-config name="otherc3p0"> <!-- otherc3p0:配置名 -->
<!-- 连接参数 -->
<property name="driverClass">com.mysql.jdbc.Driver</property>
<property name="jdbcUrl">jdbc:mysql://localhost:3306/db1</property>
<property name="user">root</property>
<property name="password">root</property>
<!-- 连接池参数 -->
<property name="initialPoolSize">5</property>
<property name="maxPoolSize">6666</property>
<property name="checkoutTimeout">1000</property>
<property name="maxIdleTime">2000</property>
</named-config>
</c3p0-config>
- 将配置文件放在src目录下
- 创建连接池对象:ComboPooledDataSource 对象使用默认配置或命名配置
- 从连接池中获取连接对象
- 使用连接对象操作数据库
- 关闭资源
public class Demo01 {
public static void main(String[] args) throws Exception {
ComboPooledDataSource ds = new ComboPooledDataSource("otherc3p0");
Connection conn = ds.getConnection();
String sql = "INSERT INTO student VALUES (NULL, ?, ?, ?);";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setString(1, "张三");
pstmt.setInt(2, 25);
pstmt.setDouble(3, 99.5);
int i = pstmt.executeUpdate();
System.out.println("影响的行数: " + i);
pstmt.close();
conn.close();
}
}
Druid连接池使用步骤
- 导入druid的jar包
- 在src目录下创建一个properties文件,并设置对应参数
- 加载properties文件的内容到Properties对象中
- 创建Druid连接池,使用配置文件中的参数
- 从Druid连接池中取出连接
- 执行SQL语句
- 关闭资源
- jar下载:
链接:https://pan.baidu.com/s/1sbnYqrSXKPKMupea4QG5Tg
提取码:aqi6
复制这段内容后打开百度网盘手机App,操作更方便哦 - properties文件内容:
url=jdbc:mysql://localhost:3306/db1
username=root
password=root
driverClassName=com.mysql.jdbc.Driver
initialSize=5 // 初始连接数量
maxActive=10 // 最大连接数量
maxWait=2000 // 获取连接最大等待时间
- 步骤三之后的代码:
public class Demo5 {
public static void main(String[] args) throws Exception {
Properties pp = new Properties();
InputStream in = Demo5.class.getResourceAsStream("/druid.properties");
pp.load(in);
DataSource ds = DruidDataSourceFactory.createDataSource(pp);
for (int i = 0; i < 9; i++) {
Connection conn = ds.getConnection();
System.out.println("conn = " + conn);
}
Connection conn2 = ds.getConnection();
System.out.println("conn2 = " + conn2);
conn2.close();
Connection conn3 = ds.getConnection();
System.out.println("conn3 = " + conn3);
String sql = "insert into employee (name,age,address) values(?,?,?);";
PreparedStatement pstmt = conn3.prepareStatement(sql);
pstmt.setString(1,"如花");
pstmt.setInt(2,30);
pstmt.setString(3,"东莞");
pstmt.executeUpdate();
pstmt.close();
conn3.close();
}
}