gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 23:04:13 26 4
gpt4 key购买 nike

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

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

非常感谢,强尼

最佳答案

在我的脑海中,我可以想到 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"]

现在您可以通过两种方式运行您的代码:

来自渐变

$gradle run

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

$gradle clean build distZip

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

选项 3(Android 开发人员):使用 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 构建环境的更多信息

关于java - 如何使用 Gradle 添加默认 JVM 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35244961/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com