如何使用 Gradle 添加默认 JVM 参数

2022-09-01 09:52:04

当使用Gradle构建时,我需要将默认的JVM选项添加到我的jar中。从我得到的文档中,我必须设置:

applicationDefaultJvmArgs = ["-Djavafx.embed.singleThread=true"]

我对Gradle没有太多经验,编写build.gradle文件的开发人员编写它与大多数网站给出的示例不同。

以下是 build.gradle:

apply plugin: 'java'
apply plugin: 'eclipse'

version = '0.1'

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.+'
    compile 'placeholder'
}

task release(type: Jar) {
    manifest {
        attributes("Implementation-Title": "placeholder",
                "Implementation-Version": version,
                'Main-Class': 'placeholder.Application')
    }
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }

    with jar
}

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

我不知道把论点放在哪里。我试着把它们放在不同的位置,但我总是得到:

A problem occurred evaluating root project 'placeholder'.
> No such property: applicationDefaultJvmArgs for class: org.gradle.api.tasks.bundling.Jar_Decorated

非常感谢,乔尼


答案 1

从我的头顶上,我可以想到2个选项:

选项1:按照@Ethan说的去做,它可能会起作用:

package placeholder;

//your imports

public class Application{
  static {
      System.getProperties().set("javafx.embed.singleThread", "true");  
  }
  // your code
  public static void main(String... args){
    //your code
  }
}

选项 2:使用应用程序插件 + 默认 jvm 值

build.gradle:

apply plugin: 'application'
//your code
applicationDefaultJvmArgs = ["-Djavafx.embed.singleThread=true"]

现在,您可以通过 2 种方式运行代码:

从 gradle

$gradle run

从发行版(脚本)中)。从应用程序插件将提供的生成脚本中:

$gradle clean build distZip

然后,gradle 将在 下方的某个位置生成一个 zip 文件。找到zip,然后解压缩它,在下方找到和可执行文件。一个是用于Linux / mac / unix(),另一个是用于Windows(${your.projectdir}/build/bin${yourproject}.bat${yourproject}${yourproject}${yourproject.bat})

选项 3(Android Developer):使用 gradle.properties 设置 jvm 参数

# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx1024m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 

# You can setup or customize it according to your needs and combined with the above default value.
org.gradle.jvmargs=-Djavafx.embed.singleThread=true

有关如何在 docs.gradle.org 上使用 gradle 构建环境的更多信息


答案 2

applicationDefaultJvmArgs 由 Application 插件提供。因此,如果您应用该插件,错误可能会消失,并且一旦您将mainClassName属性设置为要调用其main方法,您应该能够通过发出来执行程序。gradle run


推荐