欢迎来到天天文库
浏览记录
ID:50460919
大小:115.00 KB
页数:15页
时间:2020-03-09
《数据库连接池的研究与实现.doc》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、数据库连接池的研究与实现 JDBC摘要在基于JDBC的数据库实际应用开发中,对数据库连接的管理是一个重点也是一个难点,频繁对数据库的连接与关闭操作、多客户对数据库的并发访问,一定程度上决定了WEB系统的响应以及应用性能。使用数据库连接池方式能对数据库的连接进行管理和维护,上层应用...
摘 要在基于JDBC的实际应用开发中,对连接的管理是一个重点也是一个难点,频繁对数据库的连接与关闭操作、多客户对数据库的并发访问,一定程度上决定了WEB系统的响应以及应用性能。使用数据库连接池方式能对数据库的连接进行管理
2、和维护,上层应用程序通过数据库连接池使用数据库资源能提升系统性能,充分利用系统资源。文章通过介绍、分析数据库连接池工作的基本原理,了解目前流行的WEB服务器在数据库连接池方面的使用现状后,总结一了些数据库连接池开发程序中容易忽略的问题。并在学习掌握了实现连接池的关键技术后给出了一个较为高效的连接池管理策略,在这种策略思想的指导下实际开发出一个数据库连接池模块,使得上层应用通过本连接池访问数据库资源变得相对高效和容易,从实际上论证了这种设计方案的可行性。(毕业设计网)
关
3、键词:连接池;数据库;JDBC;并发访问ResearchandrealizationoftheDatabaseConnectionPoolAbstractInthepracticallyapplicationdevelopmentofdatabasebasedonJDBC,themanagementofdatabaseconnectionisakeypointandalsoadifficulty.TheresponseandperformanceoftheWEBsystemaredependedonfr
4、equentlyconnecting,closingandmulti-useraccessinginacertainextent.UsingtheDatabaseConnectionPoolcanprovidemanagementandmaintenanceforconnectionsofthedatabase.TheupperapplicationsmayaccessthedatabaserecourseviatheDatabaseConnectionPool,inordertoupgradesystemperformanceand
5、fullyutilizethesystemrecourse.ThisarticlesummarizessomeissueswhichareeasilyignoredintheapplicationdevelopmentoftheDatabaseConnectionPoolbythewayofintroducingandanalyzingthebasalworkingprinciplesoftheDatabaseConnectionPool,comprehendingtheusingactualityoftheDatabaseConne
6、ctionPoolonthepopularWEBservers.Besides,IestablishedacomparativelyhighlyeffectivepolicyoftheConnectionPoolmanagementafterhavinglearnedandcomprehendedkeytechniqueofimplementingtheConnectivityPool,andactuallyhaddevelopedaDatabaseConnectionPoolmoduleundertheguidanceofthatp
7、olicy,causingtheaccessofsystemresourcebytheupperapplicationsviacurrentConnectivityPoolbecomingrelativelyhighlyeffectiveandeasy,demonstratedthefeasibilityofthisdesignprojectinpractice.
Keywords:DatabaseConnectionPool;Database;JDBC;Concurrenceaccess连接池的主要作用<
8、BR>一个应用系统,同时有几百人甚至几千人频繁的进行数据库连接操作势必占用很多的系统资源,严重的甚至会造成服务器的崩溃。对于每一次数据库连接,使用完后都得断开。否则,如果程序出现异常而未能关闭,将会导致数据库系统中的内存
此文档下载收益归作者所有