JNDI:如何在TOMCAT中配置数据源通过JNDI访问测试操作步骤

时间:2021-05-02 19:12:42
JNDI:Java Naming and Directory Interface
中文翻译:Java命名和目录接口
实现功能:在Tomcat中配置Mysql数据源,然后通过JNDI测试工程测试是否配置成功
开发环境:MyEclipse5.0GA  Tomcat/5.5.12

接下来的就是操作步骤:
1〉在Mysql中Test数据库中创建表student
use test;
create table student(
  id int not null primary key,
  name varchar(20)
);

--添加三条测试数据:
insert into student values
(1,'张三'),
(2,'李四'),
(3,'王五');

--查看是否添加成功:
select * from student;

数据层完成之后,我们开始创建JNDI测试工程。

2〉在MyEclipse中创建工程jndiTest080220,编辑WEB-INF/web.xml文件,在文件中添加:
<description>MYSQL JNDI TEST</description>
<resource-ref>
<description>DB Connection test</description>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
在WebRoot下新建一个MyJsp.jsp页面,添加以下代码:
<h1>get data from mysql's db named test </h1>
    <hr>
    <%
DataSource ds = null;
try {
Context initCtx = new InitialContext();
if (initCtx == null)
throw new Exception("Initial   Failed!");
Context ctx = (Context) initCtx.lookup("java:comp/env");
if (ctx != null)
ds = (DataSource) ctx.lookup("jdbc/test");
if (ds == null)
throw new Exception("Look   up   DataSource   Failed!");
} catch (Exception e) {
System.out.println(e.getMessage());
}
%>
<%
Connection conn = ds.getConnection();
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("select * from student");
while (rs.next()){
%>
<%=rs.getInt(1) %>
<%=rs.getString(2) %>
<%
}
rs.close();
stmt.close();
conn.close();
%>
web.xml和MyJsp.jsp代码编写完毕之后,我们最后来配置TOMCAT数据源且同时发布我们的工程。

3〉在$tomcat$\Tomcat 5.5\conf\server.xml,对server.xml文件进行编辑,
在<Host></Host>之间添加:
<Context path="/jdniTest080220" debug="0" reloadable="true" privileged="true" docBase="E:\HNHJ\java\jndiTest080220" workDir="E:\HNHJ\java\jndiTest080220\WebRoot">
           <Resource
name="jdbc/test"
auth="Container"
type="javax.sql.DataSource"
driverClassName="org.gjt.mm.mysql.Driver"
url="jdbc:mysql://localhost:3306/test"
username="root"
password=""
maxActive="20"
maxIdle="10"
maxWait="10000" />
           </Context>
注意:$tomcat$表示你当前安装tomcat的根目录

4〉启动tomcat,在IE中输入URL:http://localhost:8080/jdniTest080220/WebRoot/MyJsp.jsp


备注:
1.如果页面报“javax.servlet.ServletException: Cannot load JDBC driver class 'org.gjt.mm.mysql.Driver'
”错误,解决方法是在“$tomcat$\Tomcat 5.5\common\lib”下添加mysql-connector-java-3.0.17-ga-bin.jar
2.如果页面报“javax.servlet.ServletException: Cannot create JDBC driver of class '' for connect URL 'null'
”错误,说明你发布工程的方式是通过MyEclipse直接发布上去,然后启动服务进行访问的,解决方法是按照3〉的方式配置<Context>指定工程文件夹物理路径方式进行发布。
3.web.xml文件中res-ref-name名称:jdbc/test和3〉中<Resource name="jdbc/test" ...>必须一致。