eclipse mysql jdbc驱动_java – 如何将JDBC mysql驱动程序添加到Eclipse项目?
這個問題在這里已經有一個答案:>
How to install JDBC driver in Eclipse web project without facing java.lang.ClassNotFoundexception13
>我已經下載了MysqL-connector-java-5.1.24-bin.jar
>我已經在我的項目中創建了一個lib文件夾,并將jar放在那里.
>項目的屬性>構建路徑 – >添加JAR并選擇上面的JAR.
>我還是得到java.sql.sqlException:找不到適合的jdbc驅動程序:MysqL // localhost:3306 / MysqL
我使用的是MysqL 5.5
代碼:
package DBTest;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.sql.*;
import java.util.*;
/**
* Servlet implementation class TenUsers
*/
@WebServlet("/TenUsers")
public class TenUsers extends HttpServlet {
/**
* @see HttpServlet#doGet(HttpServletRequest request,HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
PrintWriter out = response.getWriter();
String MysqLUrl = "jdbc:MysqL://localhost:3306/MysqL";
Properties userInfo = new Properties();
userInfo.put("user","root");
userInfo.put("password","SabababArba");
try{
Connection connection = DriverManager.getConnection(MysqLUrl,userInfo);
}catch(Exception e) {
out.println(e);
}
}
}
如果我添加Class.forName(“com.MysqL.jdbc.Driver”);之前連接連接= DriverManager.getConnection(MysqLUrl,userInfo);我得到java.lang.ClassNotFoundException:com.MysqL.jdbc.Driver
總結
以上是生活随笔為你收集整理的eclipse mysql jdbc驱动_java – 如何将JDBC mysql驱动程序添加到Eclipse项目?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 内网服务器时间修改,内网(无网络)搭建n
- 下一篇: mysql备份表恢复数据库_mysql备