JNDI的配置

來源:互聯網
上載者:User

開發環境:jdk1.6+myeclipse6.5+mysql5.0+tomcat6.0.14

1.第一步:在apache-tomcat-6.0.14/conf/context.xml中添加:用於配置JNDI的名字
其中的代碼如下:
   <Resource name="jdbc/mysql"
    type="javax.sql.DataSource"
    password="alen"
    driverClassName="com.mysql.jdbc.Driver"
    maxIdle="40"
    maxWait="5000"
    username="root"
    url="jdbc:mysql://localhost:3306/spacedebris"
    maxActive="40"/>

加到<Context> </Context>之間

2.第二步:在項目的web.xml加入代碼:
  <resource-ref>
   <description>mysqlDB</description>
   <res-ref-name>jdbc/mysql</res-ref-name>
   <res-type>javax.sql.DataSource</res-type>
   <res-auth>Container</res-auth>
  </resource-ref>

放在<web-app version="2.4" >  </web-app>之間

3.用jsp代碼測試:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page import="java.sql.*,javax.sql.*,javax.naming.*"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
   
    <title>My JSP 'MySqlDSTest.jsp' starting page</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">
 <!--
 <link rel="stylesheet" type="text/css" href="styles.css">
 -->

  </head>
 
  <body>&nbsp;
    <%
     DataSource ds=null;
     try{
      
      InitialContext ctx=new InitialContext();
      ds=(DataSource)ctx.lookup("java:comp/env/jdbc/mysql");
      Connection conn=ds.getConnection(); 
      conn.close();
      out.println("JNDI串連MYSQL測試成功!");
     }catch(Exception ex){
      out.println(ex.getMessage());
     }
      %>
  </body>
</html>

最後效果如下:

JNDI串連MYSQL測試成功!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.