我开始使用Eclipse IoT,在尝试创建SQL连接器时,我收到以下错误。我已经在窗口中添加了类路径,并且按照 https://stackoverflow.com/questions/8745872/classnotfoundexception-com-mysql-jdbc-drive 中的建议将相应的.jar库添加到项目中。我不明白为什么我仍然收到此错误。有什么想法吗?
生成错误的代码:
public static void getConnection(){
try{
Class.forName("com.mysql.jdbc.Driver");
}
catch (ClassNotFoundException e){
System.out.print(" Class.forName cannot be found");
e.printStackTrace();
}
我明白这个:
Class.forName cannot be foundjava.lang.ClassNotFoundException: com.mysql.jdbc.Driver
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:264)
at controller.establishConnection.getConnection(establishConnection.java:17)
如果它是一个 Web 项目:检查 jar(或包含 jar 的文件夹)是否真的在项目的Deployment Assembly
中(在项目属性中设置)。如果没有,请添加它。