欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

扩展Hibernate使用自定义数据库连接池的方法

程序员文章站 2024-03-09 10:34:41
本文实例讲述了扩展hibernate使用自定义数据库连接池的方法。分享给大家供大家参考,具体如下: 在hibernate的过程中往往碰到这样的问题:我们现成的产品本来已使...

本文实例讲述了扩展hibernate使用自定义数据库连接池的方法。分享给大家供大家参考,具体如下:

在hibernate的过程中往往碰到这样的问题:我们现成的产品本来已使用自有的数据库连接池,同时使用hibernate的话在hibernate配置中也得配置数据库连接信息,这样就需要在两个地方维护数据库连接信息,维护起来感觉相当别扭。

由于我们不是在产品刚开始开发就加入hibernate的,所以不合适让产品直接使用hibernate的连接池,只好让hibernate来使用产品自有的连接池,还好hibernate已提供了连接池的扩展接口:connectionprovider。

hibernate本身是通过connectionprovider接口来实现管理数据库连接的。例如其自带的c3p0connectionprovider,proxoolconnectionprovider等,我们编写一个实现connectionprovider接口的类,在hibernate的配置文件中将相关参数改成该类就ok,相关代码如下:

hibernate.cfg.xml中用以下代码替代之前的数据库连接信息配置:

<!-- 自定义-使用nms产品的连接池 -->
<property name="hibernate.connection.provider_class">
com.shine.sourcedesk.jbpm.nmsconnectionprovider
</property>

实现connectionmanager接口的类:

package com.shine.sourcedesk.jbpm;
import java.sql.connection;
import java.sql.sqlexception;
import java.util.properties;
import org.hibernate.hibernateexception;
import org.hibernate.connection.connectionprovider;
import com.shine.framework.jdbc.connectionmanager;
/**
 * 自定义hibernate连接池,让hibernate使用产品的connectionmanager
 * @author jiangkunpeng
 *
 */
public class nmsconnectionprovider implements connectionprovider{
@override
public void close() throws hibernateexception {
}
@override
public void closeconnection(connection connection) throws sqlexception {
    //关闭连接
    connectionmanager.close(connection);
}
@override
public void configure(properties properties) throws hibernateexception {
}
@override
public connection getconnection() throws sqlexception {
    //使用产品的数据库连接池获取连接
    return connectionmanager.getconnection();
}
@override
public boolean supportsaggressiverelease() {
    return false;
}

希望本文所述对大家基于hibernate框架的java程序设计有所帮助。