连接池原理这里我就不赘述了,请参考下面的博文
tomcat6自带了连接池,废话不多说
1.修改
2.项目中的web.xml引用连接池配置
3.编写测试类DB connection jdbc/TestDB javax.sql.DataSource Container
/** * * 项目名称 ConnectionPoolDemo * 包 名 linfeng.db * 文 件 名 TestDBPool.java * 开 发 人 Administrator * 描述信息 连接池测试类 * 发布日期 2013-1-24上午9:58:12 * 修改日期 * 修 改 人 * 版本信息 V1.0 * */public class TestDBPool { /** * Connection对象 */ private static Connection conn = null; /** * 获得Connection对静态方法 * @return conn */ public static Connection getConn(){ DataSource ds =null; try { Context ctx = new InitialContext(); ds=(DataSource) ctx.lookup("java:comp/env/jdbc/TestDB"); conn=ds.getConnection(); } catch (NamingException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } return conn; }}
4.页面中调用该类
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><%@page import="linfeng.db.TestDBPool"%><%@page import="java.sql.Connection" %><% String path =request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%>5.结果Insert title here <% Connection conn = TestDBPool.getConn(); if(conn!=null){ out.println("连接成功!"); }else{ out.println("连接失败!"); }%>
6.小结
maxActive="100"//连接池最大连接数maxIdle="10"//最大空闲时间,0为无限制maxWait="10000"//建立连接的最大等待时间毫秒数