欢迎来到天天文库
浏览记录
ID:12125673
大小:494.36 KB
页数:22页
时间:2018-07-15
《102_3138797_毕业设计(论文)-基于java的数据库连接池的开发》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、基于JAVA的数据库连接池的开发摘要在基于JDBC的数据库实际应用开发中,对数据库连接的管理是一个重点也是一个难点,频繁对数据库的连接与关闭操作、多客户对数据库的并发访问,一定程度上决定了WEB系统的响应以及应用性能。使用数据库连接池方式能对数据库的连接进行管理和维护,上层应用程序通过数据库连接池使用数据库资源能提升系统性能,充分利用系统资源。文章通过介绍、分析数据库连接池工作的基本原理,了解目前流行的WEB服务器在数据库连接池方面的使用现状后,总结一了些数据库连接池开发程序中容易忽略的问题。并在学
2、习掌握了实现连接池的关键技术后给出了一个较为高效的连接池管理策略,在这种策略思想的指导下实际开发出一个数据库连接池模块,使得上层应用通过本连接池访问数据库资源变得相对高效和容易,从实际上论证了这种设计方案的可行性。关键词:连接池;数据库;JDBC;并发访问ResearchandrealizationoftheDatabaseConnectionPoolAbstractInthepracticallyapplicationdevelopmentofdatabasebasedonJDBC,themana
3、gementofdatabaseconnectionisakeypointandalsoadifficulty.TheresponseandperformanceoftheWEBsystemaredependedonfrequentlyconnecting,closingandmulti-useraccessinginacertainextent.UsingtheDatabaseConnectionPoolcanprovidemanagementandmaintenanceforconnection
4、softhedatabase.TheupperapplicationsmayaccessthedatabaserecourseviatheDatabaseConnectionPool,inordertoupgradesystemperformanceandfullyutilizethesystemrecourse.ThisarticlesummarizessomeissueswhichareeasilyignoredintheapplicationdevelopmentoftheDatabaseCo
5、nnectionPoolbythewayofintroducingandanalyzingthebasalworkingprinciplesoftheDatabaseConnectionPool,comprehendingtheusingactualityoftheDatabaseConnectionPoolonthepopularWEBservers.Besides,IestablishedacomparativelyhighlyeffectivepolicyoftheConnectionPool
6、managementafterhavinglearnedandcomprehendedkeytechniqueofimplementingtheConnectivityPool,andactuallyhaddevelopedaDatabaseConnectionPoolmoduleundertheguidanceofthatpolicy,causingtheaccessofsystemresourcebytheupperapplicationsviacurrentConnectivityPoolbe
7、comingrelativelyhighlyeffectiveandeasy,demonstratedthefeasibilityofthisdesignprojectinpractice.Keywords:DatabaseConnectionPool;Database;JDBC;Concurrenceaccess591论文网www.591LW.com目录 论文总页数:22页1引言11.1课题背景11.2连接池的主要作用11.3目前流行的web服务器数据库连接池方面使用现状11.3.1DHCP介
8、绍21.3.2Poolman介绍21.3.3C3P0介绍21.3.4其他连接池(自写连接池)22相关理论基础32.1数据库概述32.2数据库连接池的基本原理32.3连接池中的关键技术42.3.1连接池的分配与释放42.3.2连接池的维护53系统总体设计思想及方案53.1连接池中的关键类设计63.2连接池中的管理机制73.3实现一个连接池的其他问题83.3.1事务处理83.3.2封装93.3.3并发93.3.4连接池的关闭94具体的设计流程和实现104.1连接池的建立1
此文档下载收益归作者所有