当前位置: 首页 > 图文教程 > 数据库 > MYSQL > tomcat+mysql数据库的连接池配置

MYSQL
怎样可以在Windows上安装多个Mysql
详细讲解MySQL数据库中的安全配置步骤
解析mysql 8小时空闲后连接超时的问题
一起从基础入手来打开MySQL数据库之门
MySQL数据库中的Show命令具体用法
怎样在MySQL的数据库中定义外键详解
MySQL数据库用户帐号管理基础知识详解
MySQL从旧的版本升级为新的版本全攻略
用Tomcat和MySQL生成动态内容详解
讲解查看MySQL数据库错误码的三个方法
数据库经验:如何简单安装MySQL数据库
MySQL数据库双机热备的配置方法详解
在SUSE10下安装和配置MySQL数据库
MySQL数据库本地备份和双机相互备份
MySQL数据库常见的出错代码及出错信息
带你轻松玩转MySQL数据库的异常处理
用实例管理器轻松管理多个MySQL实例
MySQL性能调整之my.cnf文件的配置方法
Replace INTO与INSERT INTO的不同之处
循序渐进讲解MySQL数据库的性能调整

MYSQL 中的 tomcat+mysql数据库的连接池配置


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-17   浏览: 33 ::
收藏到网摘: n/a

1)下载mm.mysql-2.0.14-bin.jar包,放在tomcat目录下的common/lib文件夹中

2)在tomcat目录下的conf/server.XML中的</Host>前加入(注意:全部大写的地方要替换成你自己的东西)

以下为引用的内容:

<!--for mysql database connection pool--><Context path="/APPLICATION_NAME" docBase="APPLICATIOIN_NAME" debug="5" reloadable="true" crossContext="true">  <Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_DBTest_log." suffix=".txt" timestamp="true"/>          <Resource name="jdbc/DATABASE_NAME" auth="Container" type="javax.sql.DataSource"/>           <ResourceParams name="jdbc/DATABASE_NAME">                      <parameter>                               <name>factory</name>                                  <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>                      </parameter>                                   <!-- Class name for mm.mysql JDBC driver -->                     <parameter>                                    <name>driverClassName</name>                                      <value>org.gjt.mm.mysql.Driver</value>                      </parameter>                                 <!-- The JDBC connection url for connecting to your MySQL dB.                                            The autoReconnect=true argument to the url makes sure that the                                          mm.mysql JDBC Driver will automatically reconnect if mysqld closed                                      the connection.  mysqld by default closes idle connections after 8 hours.-->                     <parameter>           &nbsp;                      <name>url</name>                                <value>jdbc:mysql://localhost:3306/DATABASE_NAME?autoReconnect=true</value>                   </parameter>                                 <!-- MySQL dB username and password for dB connections  -->                     <parameter>                                  <name>username</name>                                   <value>DB_USERNAME</value>                      </parameter>                      <parameter>                                   <name>password</name>                                 <value>DB_PASSword</value>                      </parameter>                                 <!-- Maximum number of dB connections in pool. Make sure you                                       configure your mysqld max_connections large enough to handle                                            all of your db connections. Set to 0 for no limit.-->                   <parameter>                                    <name>maxActive</name>                                   <value>100</value>