欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

hibernate中使用c3p0数据源 hibernatec3p0数据源 

程序员文章站 2022-06-01 20:42:08
...

在hibernate.cfg.xml中添加c3p0配置。

<property name="hibernate.c3p0.max_size">10</property>  最大连接数
<property name="hibernate.c3p0.min_size">4</property>    最小连接数
<property name="hibernate.c3p0.acquire_increment">2</property>  一次增加多少连接数
<property name="hibernate.c3p0.timeout">5000</property>   连接多少时间没用就销毁
<property name="hibernate.c3p0.idle_test_period">5000</property> 检测线程多少时间检测一次连接以销毁没用的连接
<property name="hibernate.c3p0.max_statements">10</property> 缓存statement对象的数量