註:本文假設你已經成功安裝了Eclipse的Tomcat外掛程式sysdeo!
首先建立Tomcat工程:File->New->Other下選擇Tomcat Project(圖1)
工程名稱輸入為connMysql(圖2)
為方便這裡選擇can update server.xml file(預設值),點擊Finish完成工程檔案的建立(圖3)在connMysql工程中建立Java檔案。選中connMysql從File->New點擊Class(圖4)在Package中輸入test,Name輸入為sqlBean,其它為預設,完成檔案建立。sqlBean檔案代碼如下:
package test;
import java.sql.Connection;
import java.sql.DriverManager;
//sqlBean為一抽象函數,實現資料連線及關閉功能
public abstract class sqlBean {
private String myDriver= "org.gjt.mm.mysql.Driver";
private String myURL= "jdbc:mysql://8.8.8.2:3306/netbilling?user=flux&password=123456";
protected Connection myConn;
public sqlBean(){}
public void makeConnection() throws Exception{
Class.forName(myDriver).newInstance();
myConn= DriverManager.getConnection(myURL);
}
public abstract void cleanup() throws Exception;
public void takeDown() throws Exception{
cleanup();
myConn.close();
}
}
同樣的方法建立dbBean檔案。dbBean檔案代碼如下:
package test;
import java.sql.ResultSet;
import java.sql.Statement;
//dbBean繼承自sqlBean實現取資料
public class dbBean extends sqlBean{
String mySQL= "select operatorno,operatorname,description from operator";
ResultSet myResuleSet= null;
Statement stmt= null;
public dbBean(){
super();
}
public boolean getNextDB() throws Exception{
return myResuleSet.next();
}
public String getColumn(String inCol) throws Exception{
return myResuleSet.getString(inCol);
}
public boolean getData() throws Exception{
String myQuery= mySQL;
stmt= myConn.createStatement();
myResuleSet= stmt.executeQuery(myQuery);
return (myResuleSet!= null);
}
public void cleanup() throws Exception{
stmt.close();
}
}
接下來建立調用這個Bean的JSP檔案。這時要注意選中工程檔案connMysql然後再建立JSP檔案,這樣檔案直接被建立在connMysql目錄下,方便調用。File->New->File(圖5)
JSP檔案dbquery.jsp檔案代碼為:
<!DOCTYPE HTML PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<%@ page language="java" %>
<%@ page import= "java.sql.*"%>
<%@ page contentType= "text/html;charset=gb2312"%>
<jsp:useBean id="dbbean" class="test.dbBean" scope="page"/>
<title>Lomboz JSP</title>
</head>
<body bgcolor="#FFFFFF">
<table border="1" width="400">
<tr>
<td><b>NO</b></td><td><b>NAME</b></td><td><b>DESCRIPTION</b></td>
</tr>
<%
dbbean.makeConnection();
if(dbbean.getData()){
while(dbbean.getNextDB()){
String no= dbbean.getColumn("operatorno");
String name= dbbean.getColumn("operatorname");
String desc= dbbean.getColumn("description");
%>
<tr>
<td><%=no%></td>
<td><%=name%></td>
<td><%=desc%></td>
</tr>
<%
}
}
dbbean.takeDown();
%>
</table>
</body>
</html>
到這裡基本代碼已經完成,但還有很重要的一步,因為這個程式中我們用到了JdbcMysql所以還要把JdbcMysql.jar檔案拷貝到WEB-INF目錄(Eclipse程式自動建立的)下,否則調用JSP檔案時會出現ClassNotFound錯誤資訊。剛開始我以為Eclipse很智能地把檔案包含進去呢,因為在Project的Liberaries裡我包含了這個Jar檔案,誰知結果不是這樣,鬱悶了我半天。
好了,儲存檔案,點擊Eclipse介面上的那個小老虎表徵圖啟動Tomcat(圖6)在瀏覽器中輸入http://localhost:8080/connMysql/dbquery.jsp,哈哈,大功告成!(圖7)
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=73568