Spring + Hibernate 配置BoneCp

为什么 BoneCP 连接池的性能这么高呢?(bonecp-0.6.4.jar,google-collections-1.0.jar,slf4j-api-1.5.11.jar,slf4j-log4j12-1.5.11.jar。这几个是使用BoneCp的必备包)
1. BoneCP 不用 synchronized 关键字来处理多线程对资源的争用,而是使用 java.util.concurrent 包中的锁机制,这个包是在 JDK 1.5 才开始有的;

2. 分区机制,尽管使用了锁,但还是存在着资源争用的问题,因此 BoneCP 可配置多个连接池分区,每个分区独立管理,互不影响。



尽管连接池的性能并不会是一个系统中的瓶颈,但是我们单纯从连接池这个角度来看 BoneCP ,也是值得我们去学习的。



²     JDBC连接属于数据源

// load the DB driver

Class.forName("org.hsqldb.jdbcDriver");      



// create a new datasource object

BoneCPDataSource ds = new BoneCPDataSource(); 



// set the JDBC url

ds.setJdbcUrl("jdbc:hsqldb:mem:test");              



// set the username

ds.setUsername("sa");                        



// set the password

ds.setPassword("");                          



// (other config options here)

ds.setXXXX(...);                             

       

Connection connection;

connection = ds.getConnection();             

// fetch a connection

       

...  do something with the connection here ...



// close the connection

connection.close();                          

// close the datasource pool

ds.close();                



²     Spring配置数据源

<!-- BoneCP configuration --><bean id="mainDataSource" class="com.jolbox.bonecp.BoneCPDataSource" destroy-method="close">   <property name="driverClass" value="com.mysql.jdbc.Driver" />   <property name="jdbcUrl" value="jdbc:mysql://127.0.0.1/yourdb" />   <property name="username" value="root"/>   <property name="password" value="abcdefgh"/>   <property name="idleConnectionTestPeriod" value="60"/>   <property name="idleMaxAge" value="240"/>   <property name="maxConnectionsPerPartition" value="30"/>   <property name="minConnectionsPerPartition" value="10"/>   <property name="partitionCount" value="3"/>   <property name="acquireIncrement" value="5"/>   <property name="statementCacheSize" value="100"/>   <property name="releaseHelperThreads" value="3"/></bean>



²     Spring+Hibernate配置数据源

<!-- Hibernate SessionFactory --><bean id="sessionFactory" class="org.springframework.orm.hibernate.LocalSessionFactoryBean"               autowire="autodetect"><property name="hibernateProperties"><props><prop key="hibernate.connection.provider_class">com.jolbox.bonecp.provider.BoneCPConnectionProvider</prop><prop key="hibernate.connection.driver_class">com.mysql.jdbc.Driver</prop><prop key="hibernate.connection.url">jdbc:mysql://127.0.0.1/yourdb</prop><prop key="hibernate.connection.username">root</prop><prop key="hibernate.connection.password">abcdefgh</prop><prop key="bonecp.idleMaxAge">240</prop><prop key="bonecp.idleConnectionTestPeriod">60</prop><prop key="bonecp.partitionCount">3</prop><prop key="bonecp.acquireIncrement">10</prop><prop key="bonecp.maxConnectionsPerPartition">60</prop><prop key="bonecp.minConnectionsPerPartition">20</prop><prop key="bonecp.preparedStatementCacheSize">50</prop><prop key="bonecp.statementsCachedPerConnection">30</prop><prop key="bonecp.releaseHelperThreads">3</prop></props></property></bean>

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/WWWTYB/archive/2010/04/10/5469645.aspx

你可能感兴趣的:(spring,Hibernate,mysql,jdbc,配置管理)