com.mysql.jdbc.Driver找不到类的异常

时间:2014-06-18 15:22:14

标签: java mysql eclipse jdbc buildpath

我知道这个问题有很多线程,但这些解决方案都没有解决我的问题。我已将必要的.jar文件添加到WEB-INF-lib文件夹中,但仍然出现错误。我尝试直接将.jar文件添加到构建路径,我仍然得到相同的错误。任何人都可以帮我解决这个问题!我已经玩了几天这个问题现在无济于事。

这是我的代码:

<%@ page import = "java.sql.*" %><%@ page import = "java.io.*" %><%@ page import = "com.mysql.*" %><?xml version ="1.0" ?>
<tours>
<%
    Connection connection = null;
    Statement staement = null;
    ResultSet result = null;

try{
    Class.forName("com.mySQL.jdbc.Driver").newInstance();   
    connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/tours", "root", "root");
    out.println("connected to database");
}
catch(SQLException e){
    out.println("error connecting to database");
}

%GT;

1 个答案:

答案 0 :(得分:3)

您的MySQL驱动程序类的包名错误。改变

  com.mySQL.jdbc.Driver

 com.mysql.jdbc.Driver