欢迎来到天天文库
浏览记录
ID:27203655
大小:419.50 KB
页数:27页
时间:2018-12-01
《毕业论文范文——数据库连接池的研究与实现》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、论文数据库连接池的研究与实现论文作者姓名:申请学位专业:申请学位类别:指导教师姓名(职称):论文提交日期:第1页共19页数据库连接池的研究与实现摘要在基于JDBC的数据库实际应用开发中,对数据库连接的管理是一个重点也是一个难点,频繁对数据库的连接与关闭操作、多客户对数据库的并发访问,一定程度上决定了WEB系统的响应以及应用性能。使用数据库连接池方式能对数据库的连接进行管理和维护,上层应用程序通过数据库连接池使用数据库资源能提升系统性能,充分利用系统资源。文章通过介绍、分析数据库连接池工作的基本原理,了解目前流行的WEB服务器在数据库
2、连接池方面的使用现状后,总结了一些数据库连接池开发程序中容易忽略的问题。并在学习掌握了实现连接池的关键技术后给出了一个较为高效的连接池管理策略,在这种策略思想的指导下实际开发出一个数据库连接池模块,使得上层应用通过本连接池访问数据库资源变得相对高效和容易,从实际上论证了这种设计方案的可行性。关键词:连接池;数据库;JDBC;并发访问第1页共19页ResearchandimplementationoftheDatabaseConnectionPoolAbstractInthepracticallyapplicationdevelopm
3、entofdatabasebasedonJDBC,themanagementofdatabaseconnectionisakeypointandalsoadifficulty.TheresponseandperformanceoftheWEBsystemaredependedonfrequentlyconnecting,closingandmulti-useraccessinginacertainextent.UsingtheDatabaseConnectionPoolcanprovidemanagementandmaintenan
4、ceforconnectionsofthedatabase.TheupperapplicationsmayaccessthedatabaserecourseviatheDatabaseConnectionPool,inordertoupgradesystemperformanceandfullyutilizethesystemrecourse.ThisarticlesummarizessomeissueswhichareeasilyignoredintheapplicationdevelopmentoftheDatabaseConn
5、ectionPoolbythewayofintroducing,analyzingthebasaltheoryoftheDatabaseConnectionPoolandcomprehendingtheusingsituationoftheDatabaseConnectionPoolonthepopularWEBservers.Besides,IestablishedacomparativelyhighlyeffectivepolicyoftheConnectionPoolmanagementafterhavinglearnedan
6、dcomprehendedkeytechniqueofimplementingtheConnectivityPool,andactuallyhaddevelopedaDatabaseConnectionPoolmoduleundertheguidanceofthatpolicy,causingtheaccessofsystemresourcebytheupperapplicationsviacurrentConnectivityPoolbecomingrelativelyhighlyeffectiveandeasy,demonstr
7、atedthefeasibilityofthisdesignprojectinpractice.Keywords:DatabaseConnectionPool;Database;JDBC;Concurrenceaccess第1页共19页目录 论文总页数:22页1引言11.1课题背景11.2连接池的主要作用11.3目前流行的web服务器数据库连接池方面使用现状11.3.1DHCP介绍21.3.2Poolman介绍21.3.3C3P0介绍21.3.4其他连接池(自写连接池)22相关理论基础32.1数据库概述32.2数据库连接池的基本
8、原理32.3连接池中的关键技术42.3.1连接池的分配与释放42.3.2连接池的维护53系统总体设计思想及方案53.1连接池中的关键类设计63.2连接池中的管理机制73.3实现一个连接池的其他问题83.3.1事务处理83.3.2封装9
此文档下载收益归作者所有