java线程池
- 连接池
- C3P0
- Druid
连接池
- 概念:其实就是一个容器(集合),存放数据库连接的容器。当系统初始化好后,容器被创建,容器中会申请一些连接对象,当用户来访问数据库时,从容器中获取连接对象,用户访问完之后,会将连接对象归还给容器。
- 好处:
- 节约资源
- 用户访问高效
导包,在总项目名下创建lib用于存放jar包(这一步C3P0和Druid都相同)具体的jar包名各自中查看:
C3P0
c3p0两个jar包
将配置文件复制到src目录下,必须在src下:
xml文件内容:
<c3p0-config><!-- 使用默认的配置读取连接池对象 --><default-config><!-- 连接参数 --><property name="driverClass">com.mysql.cj.jdbc.Driver</property><property name="jdbcUrl">jdbc:mysql://localhost:3306/库名?serverTimeZone=GMT</property><property name="user">root</property><property name="password">123456</property><!-- 连接池参数 --><property name="initialPoolSize">5</property><property name="maxPoolSize">10</property><property name="checkoutTimeout">3000</property></default-config><named-config name="otherc3p0"> <!-- 连接参数 --><property name="driverClass">com.mysql.jdbc.Driver</property><property name="jdbcUrl">jdbc:mysql://localhost:3306/day25</property><property name="user">root</property><property name="password">root</property><!-- 连接池参数 --><property name="initialPoolSize">5</property><property name="maxPoolSize">8</property><property name="checkoutTimeout">1000</property></named-config></c3p0-config>
java代码:
package com.li.test;import java.sql.Connection;
import java.sql.SQLException;import javax.sql.DataSource;import com.mchange.v2.c3p0.ComboPooledDataSource;public class Test_c3p0 {public static void main(String[] args) throws SQLException {//1.创建数据库连接池对象DataSource ds = new ComboPooledDataSource();//2. 获取连接对象Connection conn = ds.getConnection(); //...使用//关闭连接归还线程池中conn.close();}
}
Druid
druid的一个jar包
导入配置文件(案例来说是自己通过流来读,一次放在什么地方都可以,但是建议放在src下):
配置文件中的内容:
driverClassName=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/myschool?serverTimezone=GMT
username=root
password=123456
initialSize=5
maxActive=10
maxWait=3000
validationQuery=SELECT 1
testWhileIdle=true
testOnBorrow=false
testOnReturn=false
poolPreparedStatements=false
java代码:
public static void main(String[] args) throws Exception {//加载配置文件FileInputStream stream = new FileInputStream("./src/druid.properties");Properties pro = new Properties();pro.load(stream);//获取连接池对象DataSource ds = DruidDataSourceFactory.createDataSource(pro);//获取连接Connection conn = ds.getConnection();System.out.println(conn);//关闭资源conn.close();}