【发布时间】:2019-08-25 12:25:29
【问题描述】:
我是 java 新手,我使用 maven 创建了我的项目。我有一个看起来像这样的pom.xml 文件
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.swingy.app</groupId>
<artifactId>swingy</artifactId>
<version>1.0-SNAPSHOT</version>
<name>swingy</name>
<!-- FIXME change it to the project's website -->
<url>http://maven.apache.org</url>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.36</version>
</dependency>
</dependencies>
</project>
我的主要 java 程序看起来大致/简单地像这样
package com.swingy.app;
import java.sql.*;
public class App {
static Connection conn = null;
static PreparedStatement pStatement = null;
public static void main(String[] args) {
makeJDBCConnection();
}
private static void makeJDBCConnection() {
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
return;
}
try {
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/", "root", "Pass");
if (conn != null) {
System.out.println("Connection Successful! Enjoy. Now it's time to push data");
} else {
System.out.println("Failed to make connection!");
}
} catch (SQLException e) {
System.out.println("MySQL Connection Failed!");
e.printStackTrace();
return;
}
}
}
这可以使用mvn clean package 正确编译,然后当我尝试使用java -jar target/swingy-1.0-SNAPSHOT.jar 运行时出现此错误
java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
我到处寻找答案,大多数文章都建议我将 "add the .jar file" 添加到我的类路径,但我不知道这可能意味着什么,因为我尝试的所有操作都类似于将 .jar 文件下载到项目路径,依然没有。我正在使用 vscode,这是我的项目树结构
.
├── pom.xml
├── src
│ ├── main
│ │ └── java
│ │ └── com
│ │ └── swingy
│ │ ├── app
│ │ │ ├── App.java
│ │ │ └── Main.java
│ │ ├── controls
│ │ ├── models
│ │ │ └── Player.java
│ │ └── views
│ │ └── Colors.java
│ └── test
│ └── java
│ └── com
│ └── swingy
│ └── app
│ └── AppTest.java
└── target
├── classes
...
【问题讨论】:
-
下定决心。你的代码说 MySQL,但你的 pom.xml 说 Oracle OJDBC。
-
@user207421 这一切都基于教程,错误表明问题在于缺少 ojdbc 驱动程序,所以我认为它可能依赖于它,记住我是新手。
-
错误提示缺少MySQL驱动。
-
您需要学习和理解类路径的工作原理,因为这是大多数新程序员都会遇到的问题之一。
标签: java xml maven visual-studio-code