如何使用JNDI连接池
???? 一般来说,jsp接收到请求的时候,就向数据库要求一个连接,当执行完成后再断开连接,这样的方式将会消耗大量的资源和时间。因为每次向数据库建立连接的时候都要将Connection加载到内存中,再验证用户名和密码,等一切结束通过后,再与用户建立连接,断线后又要重来一次。如此冗长的程序,既耗时又没有效率,因此我们采用连接池来优化这个问题。
连接池的运作方式是一开始向数据库要求很多的Connection,存储在一个池中,让需要的人从连接池中取得Connection,至于Connection的管理交由数据源来控制。不过为了养成良好的习惯,还是将jsp不使用的资源归还给数据来源,让真正需要的人来使用Connection对象。
设定JNDI的JDBC数据来源和DBCP连接池
修要修改两个配置文件,需要提醒的是,Tomcat5.5的配置方法和Tomcat5的并不相同,也就是说Tomcat5的配置方法将不被Tomcat5.5兼容。以下配置方法是在Tomcat5.5中进行的。
先将Mysql驱动复制到 Tomcat安装目录下的 common/lib 下
一、修改server.xml,在<host> </host>中加入如下内容
<Context path="" docBase="D:\www" debug="0" reloadable="true" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_quality_log." suffix=".txt" timestamp="true"/>
? <Resource
??? name="jdbc/guestbook"
??? type="javax.sql.DataSource"
??? password="yourpasswd"???? <!--密码-->
??? driverClassName="com.mysql.jdbc.Driver"
??? maxIdle="2"??????????????? <!--最少可用lia-->
??? maxWait="5000"???????? <!-- 最大等待时间 5秒-->
??? username="root"??????? <!--用户名-->
??? url="jdbc:mysql://localhost:3306/guestbook"
??? maxActive="4"/>????? <!--最大可用连接-->
<ResourceParams name="jdbc/guestbook">
??
?<parameter>
? <name>removeAbandoned</name>
? <!-- Abandoned DB connections are removed and recycled -->
? <value>true</value>
?</parameter>
?<parameter>
? <name>removeAbandonedTimeout</name>
? <!-- Use the removeAbandonedTimeout parameter to set the number of seconds a DB connection has been idle before it is considered abandoned.? -->
? <value>60</value>
?</parameter>
?<parameter>
? <name>logAbandoned</name>
? <!-- Log a stack trace of the code which abandoned -->
? <value>false</value>
?</parameter>
?
?<parameter>
? <name>factory</name>
? <!--DBCP Basic Datasource Factory -->
? <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
?</parameter>
?
</ResourceParams>
</Context>
?二、在WEB-INF的web.xml中加入
<description>MySQL Test App</description>
?<resource-ref>
???? <description>DB Connection</description>
???? <res-ref-name>jdbc/TestDB</res-ref-name>
???? <res-type>javax.sql.DataSource</res-type>
???? <res-auth>Container</res-auth>
?</resource-ref>
三、如何在jsp中使用
try{??????
??????????? File log = new File("d:\\pool.log");
??????????? PrintWriter logPrint = new PrintWriter(log);
??????????? Context initContext = new InitialContext();
??????????? if (initContext == null)
??????????????? logPrint.append("无配置环境");???????????????
??????????? Context envContext = (Context)initContext.lookup("java:/comp/env");
???????????
??????????? DataSource ds = (DataSource)envContext.lookup("jdbc/guestbook");
??????????? if (ds == null)
???????????????? logPrint.append("没有匹配数据库");?????
??????????? logPrint.close();
??????????? conn = ds.getConnection();
?????????? //do your work
???????}catch(Exception e){
???????????? e.printStackTrace();
?????? }finally{
???????? conn.close();?? //不会释放资源,只是将资源还给连接池
?????? }
?
1 楼 ski_mz 2009-01-29 路过。。。