jdbc数据库连接池连接

本文介绍了如何使用C3P0作为数据库连接池进行JDBC连接。通过创建ComboPooledDataSource对象,并配置相关参数,如在`jdbc.properties`文件中设置数据库连接信息,确保引入必要的jar包:c3p0-xxxx.jar和mchange-commons-java-xxxx.jar。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

c3p0-config.xml 配置文件


<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
    <named-config name="mysql">
        <!-- 配置数据库用户名 -->
        <property name="user">root</property>
        <!-- 配置数据库密码 -->
        <property name="password">root</property>
        <!-- 配置数据库链接地址 -->
        <property name="jdbcUrl">jdbc:mysql://localhost:3306/db1?characterEncoding=UTF-8&serverTimezone=Hongkong&useSSL=false&autoReconnect=true&failOverReadOnly=false</property>
       					  <!--   jdbc:mysql://localhost:3306/db1?characterEncoding=UTF-8&serverTimezone=Hongkong&useSSL=false&autoReconnect=true&failOverReadOnly=false-->
        <!-- 配置数据库驱动 -->
        <property name="driverClass">com.mysql.cj.jdbc.Driver</property>
        <!-- 数据库连接池一次性向数据库要多少个连接对象 -->
        <property name="acquireIncrement">20</property>
        <!-- 初始化连接数 -->
        <property name="initialPoolSize">10</property>
        <!-- 最小连接数 -->
        <property name="minPoolSize">5</property>
        <!--连接池中保留的最大连接数。Default: 15 -->
        <property name="maxPoolSize">30</property>
        <!--JDBC的标准参数,用以控制数据源内加载的PreparedStatements数量。但由于预缓存的statements 属于单个connection而不是整个连接池。所以设置这个参数需要考虑到多方面的因素。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default:0 -->
        <property name="maxStatements">0</property>
        <!--maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default: 0 -->
        <property name="maxStatementsPerConnection">0</property>
        <!--c3p0是异步操作的,缓慢的JDBC操作通过帮助进程完成。扩展这些操作可以有效的提升性能 通过多线程实现多个操作同时被执行。Default:3 -->
        <property name="numHelperThreads">3</property>
        <!--用户修改系统配置参数执行前最多等待300秒。Default: 300 -->
        <property name="propertyCycle">3</property>
        <!-- 获取连接超时设置 默认是一直等待单位毫秒 -->
        <property name="checkoutTimeout">1000</property>
        <!--每多少秒检查所有连接池中的空闲连接。Default: 0 -->
        <property name="idleConnectionTestPeriod">3</property>
        <!--最大空闲时间,多少秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
        <property name="maxIdleTime">10</property>
        <!--配置连接的生存时间,超过这个时间的连接将由连接池自动断开丢弃掉。当然正在使用的连接不会马上断开,而是等待它close再断开。配置为0的时候则不会对连接的生存时间进行限制。 -->
        <property name="maxIdleTimeExcessConnections">5</property>
        <!--两次连接中间隔时间,单位毫秒。Default: 1000 -->
        <property name="acquireRetryDelay">1000</property>
        <!--c3p0将建一张名为Test的空表,并使用其自带的查询语句进行测试。如果定义了这个参数那么属性preferredTestQuery将被忽略。你不能在这张Test表上进行任何操作,它将只供c3p0测试使用。Default: null -->
        <property name="automaticTestTable">Test</property>
        <!-- 获取connnection时测试是否有效 -->
        <property name="testConnectionOnCheckin">true</property>
    </named-config>
</c3p0-config>

 // 创建构建数据源对象DataSource 读取文件

    ComboPooledDataSource  dataSource = new ComboPooledDataSource("mysql");


ComboPooledDataSource(); 不添加参数

<default-config> 将配置文件写在这里</default-config>

使用c3p0 必须导包

c3p0-xxxx.jar

mchange-commons-java-xxxx.jar

jdbc.propertiese配置文件

driverClass=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/db1?characterEncoding=UTF-8&serverTimezone=Hongkong&useSSL=false&autoReconnect=true&failOverReadOnly=false
name=root
password=root
InitialSize=10
MaxIdle=20
maxActive=50
MinIdle=5
MaxWait=60000

导入文件 设置参数

// 文件必须在src文件夹或resources文件夹下

      InputStream is = JDBCUtil.class.getClassLoader().getResourceAsStream("jdbc.properties");
      properties.load(is);
      // 读取配置文件属性
      driverClass = properties.getProperty("driverClass");
      url = properties.getProperty("url");
      name = properties.getProperty("name");
      password = properties.getProperty("password");
      initSize = Integer.valueOf(properties.getProperty("InitialSize"));
      maxSize = Integer.valueOf(properties.getProperty("MaxIdle"));
      // *****连接池相关************
      // 设置连接数据库的信息
      dataSource = new BasicDataSource();
      dataSource.setDriverClassName(driverClass);
      dataSource.setUrl(url);
      dataSource.setUsername(name);
      dataSource.setPassword(password);
      // 设置初始化连接数量
      dataSource.setInitialSize(initSize);
      // 设置最大空闲连接数据
      dataSource.setMaxIdle(maxSize);
      // 设置最大连接数
      dataSource.setMaxTotal(maxActive);
      // 设置最小连接数
      dataSource.setMinIdle(minIdle);
      // 设置超时等待时间以毫秒为单位 6000毫秒/1000等于60秒
      dataSource.setMaxWaitMillis(maxWait);




有道词典
ComboPooledData ...
详细 X
ComboPooledDataSource数据源= new ComboPooledDataSource(mysql);
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值