java.lang.classnotfoundexception:com.mysql.jdbc.driver即使类路径正确

j8ag8udp  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(476)

这个问题在这里已经有答案了

如何在eclipse web项目中安装jdbc驱动程序而不面对java.lang.classnotfoundexception(13个答案)
两年前关门了。
我得到了错误 java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 即使我添加了 my-sql-connector 它也存在于类路径中。
我在stack overflow上搜索了其他类似的问题,其中大部分建议将jar添加到类路径中,我已经做过了。还有什么可能的问题?

数据库工具.java

package util;

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

public class DBUtil {
    public static Connection getMySqlConnection() throws Exception {
        Class.forName("com.mysql.jdbc.Driver");
        Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/NotesStore", "root", "123");
        //System.out.println("Connection returned from dbutil");
        return con;
    }

    public static void cleanUp(Statement st, Connection con) {
        try {
            if (st != null) {
                st.close();
            }
            if (con != null) {
                con.close();
            }
        } catch (Exception e) {
            System.out.println(e);
        }
    }

}

.类路径

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="src" path="src"/>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/java-8-oracle">
        <attributes>
            <attribute name="owner.project.facets" value="java"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.tomcat.runtimeTarget/Apache Tomcat v8.5">
        <attributes>
            <attribute name="owner.project.facets" value="jst.web"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
    <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
    <classpathentry kind="lib" path="/home/diksha/Downloads/mysql-connector-java-8.0.11/mysql-connector-java-8.0.11.jar"/>
    <classpathentry kind="output" path="build/classes"/>
</classpath>
2vuwiymt

2vuwiymt1#

请尝试更换 "com.mysql.jdbc.Driver""com.mysql.cj.jdbc.Driver" 因为你使用的是8.0版本的驱动程序。

相关问题