tomcat连接池配置
### Tomcat连接池配置详解及MySQL 5.0/5.1 实践 #### 一、Tomcat连接池概述 在Java Web应用开发中,数据库连接管理是非常关键的一部分。为了提高应用程序性能并确保资源的有效利用,通常会使用连接池来管理数据库连接。Tomcat作为一款广泛使用的Java Web服务器,内置了对多种类型连接池的支持。本文将详细介绍如何配置Tomcat的连接池与MySQL 5.0/5.1进行集成,并通过具体示例进行说明。 #### 二、Tomcat连接池配置步骤 1. **配置`context.xml`** - Tomcat 6.0 的配置文件位于`$CATALINA_HOME/conf`目录下。 - 需要在`context.xml`文件中的`<Context>`标签内添加`<Resource>`标签来定义数据源。 ```xml <Resource name="jdbc/lonsecyDB" auth="Container" type="javax.sql.DataSource" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/test" username="root" password="lonsecy" maxActive="10" maxIdle="2" maxWait="100"/> ``` - 解释: - `name`:指定该数据源的名称,可以在其他地方引用。 - `auth`:设置为`Container`表示由容器管理该数据源的认证信息。 - `type`:指定资源的类型,这里为`javax.sql.DataSource`。 - `driverClassName`:MySQL驱动类的全限定名。 - `url`:连接到MySQL数据库的URL。 - `username`:数据库用户名。 - `password`:数据库密码。 - `maxActive`:连接池最大活跃连接数。 - `maxIdle`:连接池中最大的空闲连接数。 - `maxWait`:获取连接时的最大等待时间(毫秒)。 2. **配置`web.xml`** - 在Web应用的`WEB-INF/web.xml`文件中,添加`<resource-env-ref>`标签来声明使用的数据源。 ```xml <resource-env-ref> <description>LonsecySQLDatabaseConnection</description> <resource-env-ref-name>jdbc/lonsecyDB</resource-env-ref-name> <resource-env-ref-type>javax.sql.DataSource</resource-env-ref-type> </resource-env-ref> ``` - 这里的`<resource-env-ref-name>`必须与`context.xml`中的`name`属性值一致。 3. **使用数据源** - 在JSP页面或Servlet中可以通过`InitialContext`和`lookup`方法获取数据源,并使用它来创建`Connection`对象。 ```jsp <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>MyJSP '09.jsp' starting page -- 源码展示 DataSource</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> </head> <body> <br> <center> <%! Context ctx = null; DataSource ds = null; Connection con = null; Statement stmt = null; ResultSet rs = null; %> <% try { ctx = new InitialContext(); ds = (DataSource) ctx.lookup("java:comp/env/jdbc/lonsecyDB"); con = ds.getConnection(); stmt = con.createStatement(); String sqlcmd = "select * from student"; rs = stmt.executeQuery(sqlcmd); } catch (SQLException se) { se.printStackTrace(); } catch (NamingException ne) { ne.printStackTrace(); } %> </center> <br> <br><div align="center"> <br> </div> <table width="573" border="1" height="59" align="center"> <tbody> <tr> <td align="center"> 学号 </td> <td align="center"> 姓名 </td> <td align="center"> 年龄 </td> </tr> <% while (rs.next()) { %> <tr> <td><%= rs.getString(1) %></td> <td><%= rs.getString(2) %></td> <td align="center"><%= rs.getString(3) %></td> </tr> <% } rs.close(); // 关闭结果集 stmt.close(); // 关闭Statement con.close(); // 关闭连接 %> </tbody> </table> </body> </html> ``` #### 三、注意事项 - **驱动版本**:确保使用的MySQL驱动与MySQL版本兼容。 - **连接池参数**:根据实际应用场景调整连接池参数,如`maxActive`、`maxIdle`等。 - **异常处理**:在代码中加入异常处理逻辑,避免因为数据库连接问题导致程序崩溃。 - **关闭资源**:使用完连接后一定要记得关闭,释放资源。 #### 四、总结 通过以上步骤,我们可以有效地配置Tomcat连接池以支持MySQL 5.0/5.1,并在Web应用中使用这些配置。合理配置连接池可以显著提高应用程序的性能和稳定性,尤其是在高并发环境下。希望本文能帮助大家更好地理解和应用这一技术。
采取的是全局配置,步骤如下:
一。到\Tomcat 6.0\conf下,找到context.xml文件,在<Context></Context>标记间华丽的插入以下内容:
<Resource name="jdbc/lonsecyDB" auth="Container" type="javax.sql.DataSource" driverClassName="org.gjt.mm.mysql.Driver" url="jdbc:mysql://localhost:3306/test" username="root" password="lonsecy" maxActive="10" maxIdle="2" maxWait="100"/>
二。在网页程序文件夹test,找到WEB-INF目录下的web.xml配置文件,在<web-app></web-app>标记间华丽的插入以下内容:
<resource-env-ref>
<description>LonsecySQL Database Connection</description>
<resource-env-ref-name>jdbc/lonsecyDB</resource-env-ref-name>
<resource-env-ref-type>javax.sql.DataSource</resource-env-ref-type>
</resource-env-ref>
三。我测试的JSP文件内容如下:
<%@ page language="java" contentType="text/html; charset=GBK"
import="java.sql.*,javax.sql.*,javax.naming.*" pageEncoding="GBK"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My JSP '09.jsp' starting page -- 数据 源连接池 DataSource</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
-->
</head>
<body>
<br>
<center>
<%
Context ctx = null;
DataSource ds = null;
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
try {
ctx = new InitialContext();
ds = (DataSource) ctx.lookup("java:comp/env/jdbc/lonsecyDB");
con = ds.getConnection();
stmt = con.createStatement();
String sqlcmd = "select * from student";
rs = stmt.executeQuery(sqlcmd);
} catch (SQLException se) {
se.printStackTrace();
} catch (NamingException ne) {
ne.printStackTrace();
}
%>
</center>
<br>
剩余5页未读,继续阅读
- 粉丝: 11
- 资源: 21
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 光纤到户及通信基础设施报装申请表.docx
- 踝关节功能丧失程度评定表.docx
- 环保设施投资估算表.docx
- 既有建筑物通信报装申请表.docx
- 既有建筑物通信报装现场查勘报告.docx
- 监督机构检查记录表.docx
- 肩关节功能丧失程度评定表.docx
- 大学生创新创业训练计划大创项目的全流程指南
- 简易低风险工业厂房通信报装申请表.docx
- 建设工程消防验收各阶段意见回复表.docx
- 建设工程消防验收模拟验收意见表.docx
- 建设工程消防验收图纸核查意见表.docx
- 建设工程消防验收现场指导意见表.docx
- 建筑工程竣工验收消防设计质量检查报告(表格填写模板).docx
- 建筑工程消防查验意见和结论.docx
- 建筑工程消防施工竣工报告(表格填写模板).docx