Spring Boot + Gradle:如何构建可执行jar

ecr0jaav  于 2023-10-16  发布在  Spring
关注(0)|答案(7)|浏览(181)

我试图在Sping Boot + Gradle项目中构建一个可执行的jar,但目前还没有任何工作。这是最简单的结构。可能是Gradle配置中缺少了一些东西。
Gradle:

buildscript {
    ext {
        springBootVersion = '1.5.8.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'org.springframework.boot'

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

jar {
    manifest {
        attributes 'Main-Class': 'com.example.demo.DemoApplication'
    }
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}

dependencies {
    compile('org.springframework.boot:spring-boot-starter-web')
}

主配置文件:

@RestController
@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

    @GetMapping(value = "/")
    public String index() {
        return "index";
    }
}

当我运行类似java -jar 1.jar的jar文件时,我得到了这个异常:

[main] ERROR org.springframework.boot.SpringApplication - Applicati
on startup failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to proces
s import candidates for configuration class [com.example.demo.DemoApplication];
nested exception is java.lang.IllegalArgumentException: No auto configuration cl
asses found in META-INF/spring.factories. If you are using a custom packaging, m
ake sure that file is correct.
        at org.springframework.context.annotation.ConfigurationClassParser.proce
ssDeferredImportSelectors(ConfigurationClassParser.java:556)
        at org.springframework.context.annotation.ConfigurationClassParser.parse
(ConfigurationClassParser.java:185)
        at org.springframework.context.annotation.ConfigurationClassPostProcesso
r.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:308)
        at org.springframework.context.annotation.ConfigurationClassPostProcesso
r.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:228)
        at org.springframework.context.support.PostProcessorRegistrationDelegate
.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.ja
va:272)
        at org.springframework.context.support.PostProcessorRegistrationDelegate
.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:92)
        at org.springframework.context.support.AbstractApplicationContext.invoke
BeanFactoryPostProcessors(AbstractApplicationContext.java:687)
        at org.springframework.context.support.AbstractApplicationContext.refres
h(AbstractApplicationContext.java:525)
        at org.springframework.boot.context.embedded.EmbeddedWebApplicationConte
xt.refresh(EmbeddedWebApplicationContext.java:122)
        at org.springframework.boot.SpringApplication.refresh(SpringApplication.
java:693)
        at org.springframework.boot.SpringApplication.refreshContext(SpringAppli
cation.java:360)
        at org.springframework.boot.SpringApplication.run(SpringApplication.java
:303)
        at org.springframework.boot.SpringApplication.run(SpringApplication.java
:1118)
        at org.springframework.boot.SpringApplication.run(SpringApplication.java
:1107)
        at com.example.demo.DemoApplication.main(DemoApplication.java:13)
Caused by: java.lang.IllegalArgumentException: No auto configuration classes fou
nd in META-INF/spring.factories. If you are using a custom packaging, make sure
that file is correct.
        at org.springframework.util.Assert.notEmpty(Assert.java:277)
        at org.springframework.boot.autoconfigure.AutoConfigurationImportSelecto
r.getCandidateConfigurations(AutoConfigurationImportSelector.java:153)
        at org.springframework.boot.autoconfigure.AutoConfigurationImportSelecto
r.selectImports(AutoConfigurationImportSelector.java:95)
        at org.springframework.context.annotation.ConfigurationClassParser.proce
ssDeferredImportSelectors(ConfigurationClassParser.java:547)
        ... 14 common frames omitted

可能出了什么问题?

z31licg0

z31licg01#

在 Boot 2.x中,bootJar和bootWar任务负责打包应用程序。
bootJar任务负责创建可执行的jar文件。这是在应用java插件后自动创建的。
如果没有生成可执行的jar/war文件,请手动运行下面的gradle任务。

$./gradlew bootJar

类似地,bootWar生成一个可执行的war文件,并在应用war插件后创建。
我们可以使用以下命令执行bootWar任务:

$./gradlew bootWar

请注意,对于Sping Boot 2.x,我们需要使用Gradle 4.0或更高版本。

dzjeubhm

dzjeubhm2#

我用你提供的所有资源创建了一个项目。从终端运行“gradle build”,切换到/build/libs,然后运行“java -jar artifactname”就可以了。
你试过清理和重新编译吗?您使用的是哪个版本的Gradle?

0s0u357o

0s0u357o3#

在Sping Boot 中,您可以通过以下方式直接创建可执行的jar文件:

springBoot { 
    executable = true 
}

请尝试

jar{
    baseName = 'myapp' 
    version = 'version'
}

它将从命令line.it创建名为myapp-version.jar的jar Do ./myapp-version.jar将执行
请参阅以下链接了解更多信息。https://docs.spring.io/spring-boot/docs/current/reference/html/deployment-install.html

twh00eeo

twh00eeo4#

我最近刚刚尝试了一个Sping Boot 应用程序,带有Gradle构建的2.1.4.Release。
我从Windows CMD中的目录运行了以下命令。

gradlew clean build

(upon需要在系统中安装JDK8),我能够看到下生成的命令,

<project-directory>/build/libs/<project-name-version.jar>

希望这对老问题有所帮助。
参考文件:

nkkqxpd9

nkkqxpd95#

我的两分钱。
使用spring-boot时如果你想自定义MANIFEST.MF文件,需要设置bootJar任务,默认的jar任务是不起作用的。

bootJar {
    manifest {
    attributes 'Start-Class': 'com.baeldung.DemoApplication'
    }
}
afdcj2ne

afdcj2ne6#

如果您试图使.jar文件可执行,例如在systemd服务中使用。您必须编辑bootJar任务并启用launchScript
build.gradle

bootJar {
    launchScript()
}

或使用GradleKotlinDSL build.gradle.kts

tasks {
    bootJar {
        launchScript()
    }
}

您现在应该能够将项目的.jar文件作为可执行文件运行。

ua4mk5z4

ua4mk5z47#

对于我来说,在intellij中的gradle tasks下点击“jar”,在./build/libs/下创建了jar。

相关问题