Quantcast
Channel: IT社区推荐资讯 - ITIndex.net
Viewing all articles
Browse latest Browse all 15843

hibernate4配置proxool连接池

$
0
0



 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.两个文件所在目录



已有 0人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐




Viewing all articles
Browse latest Browse all 15843

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>