2

解决方案:

我添加了这段代码

Class.forName("com.mysql.jdbc.Driver");

兄弟

Connection con = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test", "root", "root");

谢谢大家回复我的问题

=====================

我有问题,我尝试使用 servlet 将数据插入 mysql db,但我无法访问 MySQL

  • 数据库名称:test
  • 表名:测试
  • 我已经在项目库中添加了 jdbc 连接器
  • 我正在使用 JDK 1.7、NetBeans 7.3、MySQL 5.6、Tomcat 7.0、Connector/J 5.1.24

1-这是 sign_up.jsp 页面中的“表单操作”:

<form action="RegisterUser" method="post">
    <td><input type="submit" value="Submit"></td>
</form>

2-这是 RegisterUser.java servlet:

import java.io.IOException;
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 com.mysql.jdbc.Driver;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.logging.Level;
import java.util.logging.Logger;

@WebServlet(urlPatterns = {"/RegisterUser"})
public class RegisterUser extends HttpServlet {
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException, SQLException {

    try{
        Connection con = DriverManager.getConnection("jdbc:mysql://localhost/test", "root", "root");
        Statement s = (Statement) con.createStatement();

        String name = "Hassan3";
        int phone = 123456;

        String insert = "INSERT INTO test VALUES ('\" + name + \"', \" + phone + \")";

        s.executeUpdate(insert);

        s.close();
        con.close();

    }catch(Exception e){
        throw new SecurityException("Class not found " + e.toString());
    }
}

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
    try {
        processRequest(request, response);
    } catch (SQLException ex) {
        Logger.getLogger(RegisterUser.class.getName()).log(Level.SEVERE, null, ex);
    }
}

@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
    try {
        processRequest(request, response);
    } catch (SQLException ex) {
        Logger.getLogger(RegisterUser.class.getName()).log(Level.SEVERE, null, ex);
    }
}

@Override
public String getServletInfo() {
    return "Short description";
}// </editor-fold>

}

3-异常结果:

HTTP Status 500 - Class not found java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost/test

type Exception report

message Class not found java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost/test

description The server encountered an internal error that prevented it from fulfilling this request.

exception
java.lang.SecurityException: Class not found java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost/test
    RegisterUser.processRequest(RegisterUser.java:66)
    RegisterUser.doPost(RegisterUser.java:173)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:728)

note The full stack trace of the root cause is available in the Apache Tomcat/7.0.39 logs.

4-但是当我使用相同的代码但在“没有 servlet 或 web 应用程序”的 java 文件中它工作正常:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.Statement;

public class Test {
    public static void main(String[] args){
    try{
        Connection con = DriverManager.getConnection("jdbc:mysql://localhost/test", "root", "root");
        Statement s = (Statement) con.createStatement();

        String name = "Hassan4";
        int phone = 8985895;

        String insert = "INSERT INTO test VALUES ('" + name + "', " + phone + ")";

        s.executeUpdate(insert);

        s.close();
        con.close();
        System.out.println("done");
    }catch(Exception e){
        throw new SecurityException("Class not found " + e.toString());
    }
}

}

那么servlet有什么问题?为什么代码适用于 java 应用程序。但它不适用于网络应用程序。?

4

3 回答 3

2

你得到Class not found java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost/test

这意味着当您从 Web 应用程序运行它时,JRE 在 Classpath 中找不到 Class。

如果此代码在您的 Standalone 中有效,则意味着您需要在某处包含 com.mysql.jdbc.Driver类(所谓的JDBC驱动程序)的 JAR 文件。这个 JAR 需要在 Tomcat 中可见。因此,我建议将其放置在项目目录的mysql-jdbc.jar物理位置。/WEB-INF/lib

或者,您可以在此处添加第三方库,例如 JDBC 驱动程序,使用

右键单击项目名称--> 属性

在此处输入图像描述

从您的NetBeansIDE

然后重新启动Tomcat应该可以工作。

第二,你不需要

import com.mysql.jdbc.Driver;

在你的 Servlet 中。

于 2013-04-04T06:21:31.573 回答
1

大卫是对的,我想补充一下,您也可以通过将jar文件粘贴到java的安装文件夹中来安装驱动程序。

\Program Files\Java\jre7\lib\ext  

好吧,我不太喜欢 mysql,并且总是在 windows server 2008 上使用 mssql。这是我使用的代码,我可能是你的答案,因为 mysql 连接的工作方式与 sql 几乎相同。

 Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
 conn = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName="+database+";user="+user+";password="+password);
于 2013-04-03T23:21:47.167 回答
0

首先,您应该将其放入持久层。

1) 确保您的 JDBC 驱动程序就位。将它复制到您的类路径中,例如 /WEB-INF/lib 目录。链接:MySQL JDBC驱动下载页面

2)检查您的连接字符串:jdbc:mysql://<server>:<port>/<database>,看起来端口丢失了。尝试jdbc:mysql://127.0.0.1:3306/test

于 2013-04-03T23:13:53.197 回答