千家信息网

(16)Hibernate对连接池的支持

发表于:2024-11-25 作者:千家信息网编辑
千家信息网最后更新 2024年11月25日,除非我们用爱去对待一个人,否则我们无法了解他。We never can have a true view of man unless we have a love for him.1、连接池知识连接池
千家信息网最后更新 2024年11月25日(16)Hibernate对连接池的支持

除非我们用爱去对待一个人,否则我们无法了解他。

We never can have a true view of man unless we have a love for him.



1、连接池知识

连接池的作用: 管理连接;提升连接的利用效率!

常用的连接池: C3P0连接池


Hibernate 自带的也有一个连接池,且对C3P0连接池也有支持!


Hibernate自带连接池:只维护一个连接,比较简陋。

可以查看hibernate.properties文件(%hibernate%/project/etc/hibernate.properties)


Hibernate对C3P0连接池支持的核心类是org.hibernate.connection.C3P0ConnectionProvider

告诉Hibernate使用的是哪一个连接池技术。

#hibernate.connection.provider_class org.hibernate.connection.C3P0ConnectionProvider



hibernate.properties中连接池详细配置:

#################################### Hibernate Connection Pool ####################################hibernate.connection.pool_size 1            #Hibernate自带连接池:只有一个连接############################## C3P0 Connection Pool###                 #Hibernate对C3P0连接池支持############################hibernate.c3p0.max_size 2                  #最大连接数#hibernate.c3p0.min_size 2                  #最小连接数#hibernate.c3p0.timeout 5000                #超时时间#hibernate.c3p0.max_statements 100          #最大执行的命令的个数#hibernate.c3p0.idle_test_period 3000       #空闲测试时间#hibernate.c3p0.acquire_increment 2         #连接不够用的时候, 每次增加的连接数#hibernate.c3p0.validate false              ##################################### Plugin ConnectionProvider ###################################### use a custom ConnectionProvider (if not set, Hibernate will choose a built-in ConnectionProvider using hueristics)#hibernate.connection.provider_class org.hibernate.connection.DriverManagerConnectionProvider#hibernate.connection.provider_class org.hibernate.connection.DatasourceConnectionProvider#hibernate.connection.provider_class org.hibernate.connection.C3P0ConnectionProvider#hibernate.connection.provider_class org.hibernate.connection.ProxoolConnectionProvider


2、使用连接池的步骤

(1)添加C3P0的jar包

%hibernate%/lib/optional/c3p0/c3p0-0.9.1.jar

(2)在hibernate.cfg.xml文件中添加数据库连接池配置

核心配置

                                                         org.hibernate.connection.C3P0ConnectionProvider                                4                8                5000                10                10000                2

完整配置

                        com.mysql.jdbc.Driver        jdbc:mysql:///test                root        root                        org.hibernate.dialect.MySQL5Dialect                                                true                                false                                update                                                                              org.hibernate.connection.C3P0ConnectionProvider                                4                8                5000                10                10000                2                                                                     

(3)使用SHOW PROCESSLIST;进行测试

测试代码

  @Test        public void testPool()        {                Session session = sf.openSession();                session.beginTransaction();                                Department dept = (Department)session.get(Department.class, 3);                System.out.println(dept);       //在这里打断点,并使用  SHOW PROCESSLIST;  查看活跃连接                                session.getTransaction().commit();                session.close();        }

测试方法

a)在执行testPool()方法之前,使用SHOW PROCESSLIST;查看活跃的连接数量

b)调试执行testPool()方法,停在断点时,查看活跃的连接数量

c)testPool()方法执行完之后,查看活跃连接数量

d)修改配置中hibernate.c3p0.min_size数目,再次执行a,b,c查看活跃连接数量



0