- mysql官網(wǎng)下載
mysql-connector-java-5.1.38
jar包. - 項目引入jar包.
出現(xiàn) :java.lang.ClassNotFoundException:com.mysql.jdbc.Driver
解決辦法:
jar包 放在webapps/xxx/WEB-INF/lib 中摊崭! - 加載頭文件
import java.sql.*;
- 定義驅動名 定義URL 用戶名 密碼...
String driver = "com.mysql.jdbc.Driver";
// URL指向要訪問的數(shù)據(jù)庫
String url = "jdbc:mysql://127.0.0.1:3306/demo";
// MySQL配置時的用戶名密碼
String user = "root";
String password = "root";
- 連接測試
try{
//加載驅動程序
Class.forName(driver);
// 連接數(shù)據(jù)路
Connection conn = DriverManager.getConnection(url,user,password);
if(!conn.isClosed()){
System.out.println("Successed connecting to the Database!");
}
}catch(Exception e){
e.printStackTrace();
}
給個github follow me的鏈接,上面有很多初學者可供學習的資料赌髓,項目.
<a>https://github.com/SuperZee</a>