hibernate4配置proxool连接池



 1.hibernate.cfg.xml配置

        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

 
  
   proxoolPool
  

  
   resource/proxoolconf.xml
  

  
   org.hibernate.service.jdbc.connections.internal.ProxoolConnectionProvider
  

  
   org.hibernate.dialect.Oracle10gDialect
  

  true
  
 

2.proxoolconf.xml具体配置



 
  proxoolPool
  jdbc:oracle:thin:@localhost:1521:demo
  oracle.jdbc.driver.OracleDriver
  
   
   
  

  90000
  20
  5
  100
  10
 


3.两个文件所在目录

hibernate4配置proxool连接池_第1张图片

你可能感兴趣的:(hibernate4)