1、基础配置
- driverclass:数据库驱动类,比如MySQL为
com.mysql.jdbc.Driver
- jdbcUrl: 数据库连接,比如
jdbc:mysql://127.0.0.1:3306/girl?useUnicode=true&characterEncoding=utf-8&useSSL=false
-
user:登录数据库的账号,比如
root
-
password:登录数据库的密码,比如
123456
2、私有配置
-
c3p0.acquireIncrement=20
当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3
-
c3p0.minPoolSize=20
连接池中保留的最小连接数,默认为: