tomcat配置資料來源通過JNDI訪問mysql資料庫

來源:互聯網
上載者:User

 

<p>4.tomcat配置資料來源通過JNDI訪問mysql資料庫</p><p>Cannot create JDBC driver of class '' for connect URL 'null'錯誤</p>

1.添加mysql jdbc驅動至build path,並複製到tomcat目錄/lib下

2.在tomcat目錄/conf/server.xml的<host></host>之間添加

 

<Context path="/BBS" docBase="BBS" debug="5" reloadable="true" crossContext="true">

 <Resource name="jdbc/bbs" auth="Container" type="javax.sql.DataSource"

              maxActive="100" maxIdle="30" maxWait="10000"

              username="root" password="0." driverClassName="com.mysql.jdbc.Driver"

              url="jdbc:mysql://localhost:3306/bbs?autoReconnect=true"/>

</Context>

3.在工程的web-inf/web.xml中的<web-app></web-app>之間添加

 

<resource-ref> 

<description>DB Connection</description> 

<res-ref-name>jdbc/bbs</res-ref-name> 

<res-type>javax.sql.DataSource</res-type> 

<res-auth>Container</res-auth> 

</resource-ref> 

4.建立測試jsp

 

<%@ page contentType="text/html;charset=utf-8"%>

<%@ page language="java"%>

<%@ page import="java.util.*"%>

<%@ page import="java.sql.*"%>

<%@ page import="javax.sql.*"%>

<%@ page import="javax.naming.*"%>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>測試</title>

</head>

<body bgcolor="#DAF9FE">

<h1>mysql jndi 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/bbs");

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 user");

while (rs.next()) {

%>

<%=rs.getInt(1)%>

<%=rs.getString(2)%>

<%

}

rs.close();

stmt.close();

conn.close();

%>

</body>

</html>

5.相關錯誤:  <1>Cannot create JDBC driver of class '' for connect URL 'null'  Tomcat先找到web.xml下的<resource-ref>,然後再找server.xml下面的<Resource>。如果沒有找到<Resource name=”JDBC/TestDB”>,或者名字錯了,則會報“Cannot create JDBC driver of class '' for connect URL 'null'”錯誤。  注意步驟2和3中jdbc/bbs處名稱要相同,3處的url資訊要正確  <2>Cannot load JDBC driver class 'com.mysql.jdbc.Driver'  參加步驟1

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.