Hibernate的三种连接池设置C3P0、Proxool和DBCP

Hibernate的三种连接池设置C3P0、Proxool和DBCP关键字: proxool, c3p0, dbcp <propertyname="connection.driver_class">com.mysql.jdbc.Driver</property><propertyname="connection.url">jdbc:mysql://localhost:3306/struts?useUnicode=true&characterEncoding=GBK</property><!-- 数据库用户名 --><propertyname="connection.username">root</property><!-- 数据库密码 --><propertyname="connection.password">8888</property>

上面的一段配置,在c3p0和dbcp中,都是必需的,因为hibernate会根据上述的配置来生成connections,再交给c3p0或dbcp管理.

1 C3P0

只需在hibernate.cfg.xml中加入
<propertyname="c3p0.min_size">5</property><propertyname="c3p0.max_size">30</property><propertyname="c3p0.time_out">1800</property><propertyname="c3p0.max_statement">50</property>

还有在classespath中加入c3p0-0.8.4.5.jar


2 dbcp

在hibernate.cfg.xml中加入

<propertyname="dbcp.maxActive">100</property><propertyname="dbcp.whenExhaustedAction">1</property><propertyname="dbcp.maxWait">60000</property><propertyname="dbcp.maxIdle">10</property><propertyname="dbcp.ps.maxActive">100</property><propertyname="dbcp.ps.whenExhaustedAction">1</property><propertyname="dbcp.ps.maxWait">60000</property><propertyname="dbcp.ps.maxIdle">10</property>
还有在classespath中加入commons-pool-1.2.jar 和commons-dbcp-1.2.1.jar.


3 proxool

由于数据库connection在较长时间没有访问下会自动断开连接,导致浏览出错,增加proxool作为数据库pool。它有自动连接功能。
1)、从 下载proxool,释放proxool.jar到WEB-INF/lib

2)、在hibernate.cfg.xml中增加:
<propertyname="hibernate.proxool.pool_alias">dbpool</property><propertyname="hibernate.proxool.xml">proxool.xml</property><propertyname="connection.provider_class">org.hibernate.connection.ProxoolConnectionProvider</property>

3)、在与hibernate.cfg.xml同级目录(src根目录下)增加proxool.xml文件:
<?xmlversion="1.0"encoding="utf-8"?><!-- the proxool configuration can be embedded within your own application's.    Anything outside the "proxool" tag is ignored. --><something-else-entirely><alias>dbpool</alias>     jdbc:mysql://127.0.0.1:3306/wlsh?characterEncoding=GBK&useUnicode=true&autoReconnect=true</driver-url><driver-class>com.mysql.jdbc.Driver</driver-class><propertyname="user"value="root"/><propertyname="password"value="123456"/><!-- proxool自动侦察各个连接状态的时间间隔(毫秒),侦察到空闲的连接就马上回收,超时的销毁--><house-keeping-sleep-time>90000</house-keeping-sleep-time><prototype-count>5</prototype-count><!-- 允许最大连接数,超过了这个连接,再有请求时,就排在队列中等候,最大的等待请求数由maximum-new-connections决定--><maximum-connection-count>100</maximum-connection-count><minimum-connection-count>10</minimum-connection-count></something-else-entirely>


在hibernate3.0 中,已经不再支

你可能感兴趣的:(Hibernate,mysql,xml,jdbc,struts)