CreateStartScripts

为启动 JVM 应用程序创建启动脚本。

示例

task createStartScripts(type: CreateStartScripts) {
  outputDir = file('build/sample')
  mainClass = 'org.gradle.test.Main'
  applicationName = 'myApp'
  classpath = files('path/to/some.jar')
}

注意:Gradle “application” 插件添加了一个预配置的此类型任务,名为 “startScripts”。

此任务生成针对 Microsoft Windows 环境和类 UNIX 环境(例如 Linux、macOS)的单独脚本。实际生成由 CreateStartScripts.getWindowsStartScriptGenerator()CreateStartScripts.getUnixStartScriptGenerator() 属性实现,类型为 ScriptGenerator

示例

task createStartScripts(type: CreateStartScripts) {
  unixStartScriptGenerator = new CustomUnixStartScriptGenerator()
  windowsStartScriptGenerator = new CustomWindowsStartScriptGenerator()
}

class CustomUnixStartScriptGenerator implements ScriptGenerator {
  void generateScript(JavaAppStartScriptGenerationDetails details, Writer destination) {
    // implementation
  }
}

class CustomWindowsStartScriptGenerator implements ScriptGenerator {
  void generateScript(JavaAppStartScriptGenerationDetails details, Writer destination) {
    // implementation
  }
}

默认生成器类型为 TemplateBasedScriptGenerator,带有默认模板。这些模板可以通过 TemplateBasedScriptGenerator.setTemplate(org.gradle.api.resources.TextResource) 方法更改。

此任务使用的默认实现使用 Groovy 的 SimpleTemplateEngine 解析模板,并提供以下变量

  • applicationName
  • optsEnvironmentVar
  • exitEnvironmentVar
  • mainModule
  • mainClass
  • executableDir
  • defaultJvmOpts
  • appNameSystemProperty
  • appHomeRelativePath
  • classpath

示例

task createStartScripts(type: CreateStartScripts) {
  unixStartScriptGenerator.template = resources.text.fromFile('customUnixStartScript.txt')
  windowsStartScriptGenerator.template = resources.text.fromFile('customWindowsStartScript.txt')
}

属性

属性描述
applicationName

应用名称。

classpath

应用程序的类路径。

defaultJvmOpts

应用程序的默认 JVM 选项。默认为空列表。

executableDir

将脚本写入到发行版中的目录。

mainClass

用于启动 Java 应用程序的主类名。

mainModule

用于启动模块化 Java 应用程序的主模块名。

optsEnvironmentVar

用于为 JVM 提供附加选项的环境变量。

outputDir

将脚本写入的目录。

unixStartScriptGenerator

类 UNIX 启动脚本生成器。

windowsStartScriptGenerator

Windows 启动脚本生成器。

方法

无方法

脚本块

无脚本块

属性详情

String applicationName

应用名称。

FileCollection classpath

应用程序的类路径。

Iterable<String> defaultJvmOpts

应用程序的默认 JVM 选项。默认为空列表。

String executableDir

将脚本写入到发行版中的目录。

Property<String> mainClass

用于启动 Java 应用程序的主类名。

Property<String> mainModule

用于启动模块化 Java 应用程序的主模块名。

String optsEnvironmentVar

用于为 JVM 提供附加选项的环境变量。

File outputDir

将脚本写入的目录。

ScriptGenerator unixStartScriptGenerator

类 UNIX 启动脚本生成器。

默认为 TemplateBasedScriptGenerator 的实现。

ScriptGenerator windowsStartScriptGenerator

Windows 启动脚本生成器。

默认为 TemplateBasedScriptGenerator 的实现。