博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring整合BoneCP+Hibernate配置数据连接池
阅读量:6177 次
发布时间:2019-06-21

本文共 2614 字,大约阅读时间需要 8 分钟。

com.jolbox.bonecp.provider.BoneCPConnectionProvider
${driverClass}
${jdbcUrl}
${username}
${password}
${hibernate.dialect}
${hibernate.show_sql}
${hibernate.format_sql}
${hibernate.hbm2ddl.auto}
${hibernate.cache.use_second_level_cache}
${hibernate.cache.use_query_cache}
${idleMaxAge}
${idleConnectionTestPeriod}
${partitionCount}
${acquireIncrement}
${maxConnectionsPerPartition}
${minConnectionsPerPartition}
${statementsCacheSize}
${releaseHelperThreads}
WEB-INF/conf/hibernate

 properties配置文件

# 数据库连接驱动driverClass=com.mysql.jdbc.Driver#  数据库路径jdbcUrl=jdbc:mysql://127.0.0.1:3306/gameserver?useUnicode=true&characterEncoding=UTF-8#  数据库用户名username=root#  数据库密码password=root#  检查数据库连接池中空闲连接的间隔时间idleConnectionTestPeriod=60#  连接池中未使用的链接最大存活时间idleMaxAge=240#  设置每个分区含有connection最大个数maxConnectionsPerPartition=60#  设置每个分区含有connection最小个数minConnectionsPerPartition=20#  设置每个分区数partitionCount=3#  设置分区中的connection增长数量acquireIncrement=5#  设置连接池阀值poolAvailabilityThreshold=10#  连接时间connectionTimeout=3000# 每个分区释放链接助理进程的数量,默认值:3,除非你的一个数据库连接的时间内做了很多工作,不然过多的助理进程会影响你的性能 -->  releaseHelperThreads=3# 缓存prepared statements的大小,默认值:0 statementsCacheSize=30# hibernate配置方法hibernate.hbm2ddl.auto=truehibernate.show_sql=falsehibernate.format_sql=falsehibernate.cache.use_second_level_cache=truehibernate.cache.use_query_cache=falsehibernate.ehcache_config_file=/ehcache/ehcache-hibernate-local.xmlhibernate.dialect=org.hibernate.dialect.MySQLDialecthibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider

(作者:LeeHonGee)

转载地址:http://cdwda.baihongyu.com/

你可能感兴趣的文章
桌面支持--打印机连不上解决办法
查看>>
第七章:文件上传-3. 上传多个文件
查看>>
JavaScript 开发人员需要知道的简写技巧
查看>>
Linux中查找帮助文档的几种方法
查看>>
Liferay 登录页面分析
查看>>
并发编程之:并行程序设计模式
查看>>
让渡用户权限
查看>>
MeEclipse报错 “Updating indexes”
查看>>
(19)Spring Boot 添加JSP支持【从零开始学Spring Boot】
查看>>
创建第一个node应用 hello node
查看>>
Go圣经-学习笔记之select多路复用
查看>>
完美解决Get和Post请求中文乱码的问题
查看>>
使用Git 中要注意的事
查看>>
Kubernetes的四种用户部署场景,你知吗?
查看>>
Kafka Shell基本命令(包括topic的增删改查)
查看>>
mysql 正确清理binlog日志
查看>>
Vue开发与调试工具--调试工具篇
查看>>
CentOS7安装配置PostgreSQL9.6
查看>>
2019测试指南-安全测试集成在开发和测试工作流程中
查看>>
介绍NoSQL最受欢迎的产品
查看>>