我是靠谱客的博主 壮观哑铃,最近开发中收集的这篇文章主要介绍如何在 resin下配置数据库连接池,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在动态web站点设计中,数据库已成为必不可少的一部分,但数据库连接和释放开销很大,对于一个访问量少的网站可能没有什么影响,但同时有很多用户来网站查询资料时,就会导致服务器响应慢甚至死机。连接池就是针对这个问题提出的。
数据库连接池负责分配、管理和释放数据库连接,它允许应用程序重复使用一个现有的数据库连接,而再不是重新建立一个;释放空闲时间超过最大空闲时间的数据库连接来避免因为没有释放数据库连接而引起的数据库连接遗漏。这项技术能明显提高对数据库操作的性能。
数据库连接池在初始化时将创建一定数量的数据库连接放到连接池中,这些数据库连接的数量是由最小数据库连接数来设定的。无论这些数据库连接是否被使用,连接池都将一直保证至少拥有这么多的连接数量。连接池的最大数据库连接数量限定了这个连接池能占有的最大连接数,当应用程序向连接池请求的连接数超过最大连接数量时,这些请求将被加入到等待队列中。
Resin提供了一个良好的连接池来供开发人员来实现数据库连接,具体配置如下:
在/conf/resin.conf中加入以下内容:
<database>
           <jndi-name>jdbc/test</jndi-name>
           <driver type="com.microsoft.jdbc.sqlserver.SQLServerDriver">
             <url>jdbc:microsoft:sqlserver://localhost:1433;databasename=Northwind</url>
             <user>sa</user>
             <password></password>
            </driver>
            <prepared-statement-cache-size>8</prepared-statement-cache-size>
            <max-connections>20</max-connections>
            <max-idle-time>30s</max-idle-time>
            <init-param useUnicode="true"/>
          </database>
下表是resin对具体参数的解释:



Attribute        Meaning        default
jndi-name        JNDI name to store the pool under. Servlets, jsp, and other java code use this name. The path is relative to java:comp/env        
driver        Configure the database driver.        
max-connections        Pooling parameter - maximum number of allowed connections        20 
max-idle-time        Pooling parameter - maximum time an idle connection is kept in the pool        30 sec 
max-active-time        Pooling parameter - maximum time a connection allowed to be active         6 hours 
max-pool-time        Pooling parameter - maximum time a connection is kept in the pool        24 hours 
connection-wait-time        Pooling parameter - how long to wait for an idle connection (Resin 1.2.3)        10 minutes 
max-overflow-connections        Pooling parameter - how many "overflow" connection are allowed if the connection wait times out.        0 
ping-table        Reliability parameter - The database table used to "ping", checking that the connection is still live.        n/a 
ping        Reliability parameter - test for live connections before allocating them from the pool.        false 
ping-interval        Reliability parameter - how often to ping for ping-on-idle        60s 
prepared-statement-cache-size        A cache that holds prepared statements, a reused prepared statement avoids the overhead of the driver making the prepared statement        0 
spy        A debugging aid, if true, generate info level log events that reveal the SQL that is used with the connections.        false 
我用的数据源驱动是microsoft提供的接口,所以要将mssqlserver.jar,msbase.jar,msutil.jar拷到/lib下

最后

以上就是壮观哑铃为你收集整理的如何在 resin下配置数据库连接池的全部内容,希望文章能够帮你解决如何在 resin下配置数据库连接池所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部