简体   繁体   English

Maven java.lang.ClassNotFoundException:com.mysql.jdbc.Driver

[英]Maven java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

I'm new to java and I created my project using maven. 我是java的新手,我使用maven创建了项目。 I have a pom.xml file that looks like this 我有一个看起来像这样的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>

and my main java program looks roughly/simply like this 而且我的主要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;
        }

    }
}

This compiles correctly with mvn clean package then when I try to run with java -jar target/swingy-1.0-SNAPSHOT.jar I get this error 这可以使用mvn clean package正确编译,然后当我尝试使用java -jar target/swingy-1.0-SNAPSHOT.jar运行时,出现此错误

java.lang.ClassNotFoundException: com.mysql.jdbc.Driver java.lang.ClassNotFoundException:com.mysql.jdbc.Driver

I've looked everywhere for the answer and most articles suggest I "add the .jar file" to my classpath but I don't know what this might mean because everything I've tried like downloading the .jar file to the project path, still nothing. 我到处都在寻找答案,大多数文章建议我"add the .jar file"到我的类路径中,但是我不知道这可能意味着什么,因为我尝试过的所有事情都喜欢将.jar文件下载到项目路径中,依然没有。 I'm using vscode and my this is my project tree structure 我正在使用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
    ...

you need to add your dependencies in your final jar which can be done by maven using the following plugin: 您需要在最终的jar中添加依赖项,这可以由maven使用以下插件完成:

<build>
<plugins>
  <plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>single</goal>
        </goals>
      </execution>
    </executions>
    <configuration>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
      <archive>
        <manifest>
          <mainClass>com.swingy.app.App</mainClass>
        </manifest>
      </archive>
    </configuration>
  </plugin>
</plugins>

To run your project, you can use the following command: 要运行您的项目,可以使用以下命令:

java -jar target/swingy-1.0-SNAPSHOT-jar-with-dependencies.jar

I hope it works for you :) 我希望这个对你有用 :)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Maven - java.lang.ClassNotFoundException: com.mysql.jdbc.Driver - Maven - java.lang.ClassNotFoundException: com.mysql.jdbc.Driver java.lang.ClassNotFoundException:com.mysql.jdbc.Driver - java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 错误:java.lang.ClassNotFoundException:com.mysql.jdbc.Driver? - error: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver? java.lang.ClassNotFoundException: com.mysql.jdbc.Driver in Eclipse - java.lang.ClassNotFoundException: com.mysql.jdbc.Driver in Eclipse Ubuntu中的java.lang.classnotfoundexception com.mysql.jdbc.driver - java.lang.classnotfoundexception com.mysql.jdbc.driver in ubuntu Java.lang.ClassnotfoundException com.mysql.jdbc.Driver - Java.lang.ClassnotfoundException com.mysql.jdbc.Driver java.lang.ClassNotFoundException:com.mysql.jdbc.Driver - java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 严重:java.lang.ClassNotFoundException:com.mysql.jdbc.Driver - SEVERE: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 错误:java.lang.ClassNotFoundException:com.mysql.jdbc.Driver - Error : java.lang.ClassNotFoundException: com.mysql.jdbc.Driver java.lang.ClassNotFoundException: com.mysql.jdbc.Driver even after using the mySql Maven Dependency on Intellij - java.lang.ClassNotFoundException: com.mysql.jdbc.Driver even after using the mySql Maven Dependency on Intellij
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM