Spring Boot java.lang.NoClassDefFoundError:尝试运行jar时

68bkxrlz  于 2023-04-11  发布在  Spring
关注(0)|答案(3)|浏览(479)

我有一个使用Gradle的Sping Boot 项目

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'jetty'
apply plugin: 'war'
apply plugin: 'org.springframework.boot'

repositories {
    mavenCentral()
}

dependencies {
    compile("org.springframework.boot:spring-boot-starter-web:1.5.1.RELEASE") {
        exclude module: "spring-boot-starter-tomcat"
    }
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-jetty', version: '1.5.1.RELEASE'
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: '1.5.1.RELEASE'
    compile group: 'org.springframework', name: 'spring-webmvc', version: '4.3.6.RELEASE'
    compile group: 'org.springframework', name: 'spring-context-support', version: '4.3.6.RELEASE'
    compile group: 'org.springframework', name: 'spring-orm', version: '4.3.6.RELEASE'
    compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
    compile group: 'org.freemarker', name: 'freemarker', version: '2.3.23'
    compile group: 'mysql', name: 'mysql-connector-java', version: '6.0.5'
    compile group: 'org.hibernate', name: 'hibernate-core', version: '5.1.4.Final'
    compile group: 'commons-validator', name: 'commons-validator', version: '1.5.1'
    compile group: 'junit', name: 'junit', version: '4.12'
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '1.5.1.RELEASE'
}

task wrapper(type: Wrapper) {
    gradleVersion = '2.2'
}

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.1.RELEASE")
    }
}

jar {
    baseName = 'base-name'
    version = '0.1.0'
    manifest {
        attributes 'Main-Class': 'some.application.Application'
    }
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

我用
./gradlew clean jar
然后尝试使用
java -jar <jar-name>.jar
但是我得到一个错误

Exception in thread "main" java.lang.NoClassDefFoundError: org/springframework/boot/SpringApplication
        at some.application.Application.main(Application.java:11)
Caused by: java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication
        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)
        ... 1 more

我很困惑为什么我可以在IDE中运行它,但不能作为一个jar。而且我发现我的jar根本不包含任何库。
编辑:
这是我的Application.class
Package 一些应用程序;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application
{
    public static void main(String[] args)
    {
        SpringApplication.run(Application.class, args);
    }
}
piwo6bdm

piwo6bdm1#

这是因为您的依赖项没有包含在end jar文件中。
看看herehere的例子。
或者使用./gradlew clean build,它会自动正确打包应用程序。

v440hwme

v440hwme2#

1.在build.gradle中定义一个名为fatJar的任务:

jar {
    baseName = 'base-name'
    version = '0.1.0'
    manifest {
        attributes(
                'Main-Class': 'com.github:'
        )
    }
}

task fatJar(type: Jar) {
    manifest.from jar.manifest
//    classifier = 'all'
    from {
        configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) }
    } {
        exclude "META-INF/*.SF"
        exclude "META-INF/*.DSA"
        exclude "META-INF/*.RSA"
    }
    with jar
}

artifacts {
    archives fatJar
}

1.运行gradle fatJar./gradlew fatJar生成一个包含所有依赖项的jar文件,它可以独立运行,但可能会非常大(这就是为什么它被称为fat jar)。

nom7f22z

nom7f22z3#

我尝试了萨沙Shpota的答案,这也是我的问题…最后经过几个小时的搜索,帮助了我很多感谢〈3添加到我的grade.build
jar { from { configurations.extraLibs.collect { it.isDirectory()?it:} }}}}
最好看看Sasha Shpotas的回答

相关问题