JSP中使用JDBC連線MySQL資料庫的詳細步驟
1,首先在自己新建的專案文字框中輸入Web Project的名稱,然後單擊下一步。
2,繼續單擊下一步
3,把Generate web.xml deployment descriptor複選框勾上。
4,單擊Finish,完成Web project工程的建立。
5,開啟MyEclipse Datebase Explore,如圖所示
6,按圖中所示填寫各項內容,並通過Add JARS新增相應的資料庫驅動程式。
7,通過Test Driver測試驅動是否連線成功,需要輸入密碼。成功後如下圖所示
8,單擊Finish完成資料庫的連線,右擊選擇Open Database Connection
9,接下來需要在建立的目錄中新增MySQL資料庫驅動,需要將相應的MySQL資料庫驅動貼上到WEB-INF/lib資料夾下。
10,通過右擊mysql-connectior-java-5.1.6.jar,在Build Path中單擊Add toBuild Path
11,在index.jsp中輸入如下程式碼,並配置相應mySQL資料庫資料
<%@ page language="java"import="java.util.*" pageEncoding="utf-8"%>
<%@ page import="java.sql.*" %>
<body>
<%
String driver = "com.mysql.jdbc.Driver";
// URL指向要訪問的資料庫名test1
String url = "jdbc:mysql://127.0.0.1:3306/test";
// MySQL配置時的使用者名稱
String user = "root";
// Java連線MySQL配置時的密碼
String password = "111";
try {
// 1 載入驅動程式
Class.forName(driver);
// 2 連線資料庫
Connection conn = DriverManager.getConnection(url, user,password);
// 3 用來執行SQL語句
Statement statement = conn.createStatement();
// 要執行的SQL語句
String sql = "select * from login";
ResultSet rs = statement.executeQuery(sql);
String name = null;
String mima=null;
while (rs.next()) {
name = rs.getString("userName");
mima = rs.getString("passWord");
out.println(name+"\t"+mima);
}
rs.close();
conn.close();
} catch (ClassNotFoundException e) {
System.out.println("Sorry,can`t find the Driver!");
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
%>
</body>
12,這樣就執行成功了,對於出現8080埠號被佔用,可以採用如下的方法進行刪除對應的程序。
在命令提示符下,輸入netstat-aon | findstr 8080
找到對應的程序的PID,假設是7659 再輸入如下的命令
taskkill /pid 7659 /F
即可刪除對應的程序。