接続Tomcatを使用してJNDI接続プールを構成する


まずmyeclipseを使用してJNDITestというwebprojectを作成し、tomcatに関連付けます.
commons-dbcp.jarとcommons-pool.jarをJNDITestの下のweb-inf/libの下にコピーします.
Web.xmlで構成し、Web-appノードの下で追加

<listener>
	<listener-class>com.mypro.jnditest.JndiStartUpListener</listener-class>
</listener>

com.mypro.jnditest.JndiStartUpListener.javaを作成するには、次のようにコードを記述します(プログラムの起動時にjndiを呼び出してテストすることを目的としています):

package com.mypro.jnditest;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.sql.DataSource;

public class JndiStartUpListener implements ServletContextListener {

	public void contextDestroyed(ServletContextEvent event) {

	}

	public void contextInitialized(ServletContextEvent event) {
		try {
			Hashtable   env   =   new Hashtable();   
			Context ctx = new InitialContext();
			DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/MYSQL");
			if(ds != null) {
				Connection con = ds.getConnection(); 
				Statement  st = con.createStatement();
				ResultSet rs = st.executeQuery("select * from acl_user");
	
	            while(rs.next())   {  
	                    System.out.println(rs.getInt(1)   +   "\t"   +   rs.getString(2));  
	            }   
			}else {
				System.out.println("cannot find !!!!");
			}
		}catch (Exception ex) {
			ex.printStackTrace();
		}
	}

}

これでプログラムが確立されます.次にtomcat内のファイルconf/server.xmlを構成するホストノードの下に追加します.

<Context  path="/JNDITest" docBase="/JNDITest" crossContext="false"
					debug="0" reloadable="true">
					<Resource name="jdbc/MYSQL" auth="Container"
						type="javax.sql.DataSource" maxActive="100" maxIdle="30"
						maxWait="5000" username="root" password="" driverClassName="com.mysql.jdbc.Driver"
						url="jdbc:mysql://localhost:3306/moni" />
				</Context>

保存します.mysqlデータベースmoniライブラリ構築テーブルacl_の作成user,

create table acl_user(id int, name varchar(200));

テーブルにデータを挿入します.
mysqlのjdbcをtomcatのcommon/libに駆動します.
データベースを起動し、tomcatを起動し、データの印刷に成功しました.
補足:tomcat 5.5.17とmyeclipse 5.0を使用しています.jdk1.42