当前位置: 代码迷 >> Web前端 >> hibernate4配备proxool连接池
  详细解决方案

hibernate4配备proxool连接池

热度:153   发布时间:2013-07-09 09:50:48.0
hibernate4配置proxool连接池



?1.hibernate.cfg.xml配置

<?xml version='1.0' encoding='utf-8'?>

<!DOCTYPE hibernate-configuration PUBLIC
??????? "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
??????? "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

?<session-factory>
??<property name="hibernate.proxool.pool_alias">
???proxoolPool
??</property>
??<property name="hibernate.proxool.xml">
???resource/proxoolconf.xml
??</property>
??<property name="hibernate.connection.provider_class">
???org.hibernate.service.jdbc.connections.internal.ProxoolConnectionProvider
??</property>
??<property name="hibernate.dialect">
???org.hibernate.dialect.Oracle10gDialect
??</property>
??<property name="hibernate.show_sql">true</property>
??<mapping resource="com/cj/hbm/H_MAIN.hbm.xml" />
?</session-factory>

</hibernate-configuration>

2.proxoolconf.xml具体配置

<?xml version="1.0" encoding="utf-8"?>
<something-else-entirely>
?<proxool>
??<alias>proxoolPool</alias>
??<driver-url>jdbc:oracle:thin:@localhost:1521:demo</driver-url>
??<driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
??<driver-properties>
???<property name="user" value="test"/>
???<property name="password" value="test"/>
??</driver-properties>
??<house-keeping-sleep-time>90000</house-keeping-sleep-time>
??<maximum-new-connections>20</maximum-new-connections>
??<prototype-count>5</prototype-count>
??<maximum-connection-count>100</maximum-connection-count>
??<minimum-connection-count>10</minimum-connection-count>
?</proxool>
</something-else-entirely>
3.两个文件所在目录

  相关解决方案