(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中连接池详细配置:
####################################HibernateConnectionPool####################################hibernate.connection.pool_size1#Hibernate自带连接池:只有一个连接##############################C3P0ConnectionPool####Hibernate对C3P0连接池支持############################hibernate.c3p0.max_size2#最大连接数#hibernate.c3p0.min_size2#最小连接数#hibernate.c3p0.timeout5000#超时时间#hibernate.c3p0.max_statements100#最大执行的命令的个数#hibernate.c3p0.idle_test_period3000#空闲测试时间#hibernate.c3p0.acquire_increment2#连接不够用的时候,每次增加的连接数#hibernate.c3p0.validatefalse#####################################PluginConnectionProvider######################################useacustomConnectionProvider(ifnotset,Hibernatewillchooseabuilt-inConnectionProviderusinghueristics)#hibernate.connection.provider_classorg.hibernate.connection.DriverManagerConnectionProvider#hibernate.connection.provider_classorg.hibernate.connection.DatasourceConnectionProvider#hibernate.connection.provider_classorg.hibernate.connection.C3P0ConnectionProvider#hibernate.connection.provider_classorg.hibernate.connection.ProxoolConnectionProvider
2、使用连接池的步骤
(1)添加C3P0的jar包
%hibernate%/lib/optional/c3p0/c3p0-0.9.1.jar
(2)在hibernate.cfg.xml文件中添加数据库连接池配置
核心配置
<!--******************【连接池配置】******************--><!--配置连接驱动管理类--><propertyname="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property><!--配置连接池参数信息--><propertyname="hibernate.c3p0.min_size">4</property><propertyname="hibernate.c3p0.max_size">8</property><propertyname="hibernate.c3p0.timeout">5000</property><propertyname="hibernate.c3p0.max_statements">10</property><propertyname="hibernate.c3p0.idle_test_period">10000</property><propertyname="hibernate.c3p0.acquire_increment">2</property>
完整配置
<!DOCTYPEhibernate-configurationPUBLIC"-//Hibernate/HibernateConfigurationDTD3.0//EN""http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"><hibernate-configuration><!--通常,一个session-factory节点代表一个数据库--><session-factory><!--1.数据库连接配置--><propertyname="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property><propertyname="hibernate.connection.url">jdbc:mysql:///test</property><propertyname="hibernate.connection.username">root</property><propertyname="hibernate.connection.password">root</property><!--数据库方言配置,hibernate在运行的时候,会根据不同的方言生成符合当前数据库语法的sql--><propertyname="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property><!--2.其他相关配置--><!--2.1显示hibernate在运行时候执行的sql语句--><propertyname="hibernate.show_sql">true</property><!--2.2格式化sql--><propertyname="hibernate.format_sql">false</property><!--2.3自动建表--><propertyname="hibernate.hbm2ddl.auto">update</property><!--******************【连接池配置】******************--><!--配置连接驱动管理类--><propertyname="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property><!--配置连接池参数信息--><propertyname="hibernate.c3p0.min_size">4</property><propertyname="hibernate.c3p0.max_size">8</property><propertyname="hibernate.c3p0.timeout">5000</property><propertyname="hibernate.c3p0.max_statements">10</property><propertyname="hibernate.c3p0.idle_test_period">10000</property><propertyname="hibernate.c3p0.acquire_increment">2</property><!--3.加载所有映射--><!--<mappingresource="com/rk/hibernate/a_hello/Employee.hbm.xml"/>--></session-factory></hibernate-configuration>
(3)使用SHOW PROCESSLIST;进行测试
测试代码
@TestpublicvoidtestPool(){Sessionsession=sf.openSession();session.beginTransaction();Departmentdept=(Department)session.get(Department.class,3);System.out.println(dept);//在这里打断点,并使用SHOWPROCESSLIST;查看活跃连接session.getTransaction().commit();session.close();}
测试方法
a)在执行testPool()方法之前,使用SHOW PROCESSLIST;查看活跃的连接数量
b)调试执行testPool()方法,停在断点时,查看活跃的连接数量
c)testPool()方法执行完之后,查看活跃连接数量
d)修改配置中hibernate.c3p0.min_size数目,再次执行a,b,c查看活跃连接数量
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。