Hibernate的数据库连接池
数据库连接是一种关键的有限的昂贵的资源,这一点在多用户的网页应用程序中体现得尤为突出。对数据库连接的管理能显著影响到整个应用程序的伸缩性和健壮性,影响到程序的性能指标。数据库连接池正是针对这个问题提出来的。数据库连接池负责分配、管理和释放数据库连接,它允许应用程序重复使用一个现有的数据库连接,而再不是重新建立一个;释放空闲时间超过最大空闲时间的数据库连接来避免因为没有释放数据库连接而引起的数据库连接遗漏。这项技术能明显提高对数据库操作的性能。
默认情况下,Hibernate会采用内建的连接池。但这个连接池性能不佳,且存在诸多BUG,因此官方也只是建议仅在开发环境下使用。Hibernate支持第三方的连接池,官方推荐的连接池是C3P0,Proxool,以及DBCP。
(1)C3P0的配置
使用c3p0数据库连接池,只需导入c3p0的jar包,在配置文件中配置相关属性即可。
<!-- 配置c3p0数据库连接池 --> <property name="hibernate.c3p0.min_size">5</property> <property name="hibernate.c3p0.max_size">30</property> <property name="hibernate.c3p0.time_out">1800</property> <property name="hibernate.c3p0.max_statement">50</property>
属性名称如果省略了hibernate的话,会有类似这样的警告:
[org.hibernate.connection.C3P0ConnectionProvider]-[WARN] Both hibernate-style property 'hibernate.c3p0.max_size' and c3p0-style property 'c3p0.max_size' have been set in hibernate.properties. Hibernate-style property 'hibernate.c3p0.max_size' will be used and c3p0-style property 'c3p0.max_size' will be ignored!
相关推荐
thunderstorm 2020-06-06
鲁氏汤包王 2020-04-18
favouriter 2020-04-18
lightlanguage 2019-12-22
Ali 2012-05-23
wintershii 2020-08-17
点滴技术生活 2020-07-19
LeoHan 2020-06-13
Laxcus大数据技术 2020-06-11
PengQ 2020-06-06
Zhangdragonfly 2020-06-05
tlsmile 2020-06-03
Kele0 2020-05-30
yongyoumengxiang 2020-03-26
heniancheng 2020-03-25
nan00zzu 2020-02-23
步行者 2020-02-20