Java:JDK 12
生成工具:Maven
IDE:Eclipse
操作系统:Windows
我有一段简单的Java FX 11代码,它显示了一个简单的空白屏幕。 我已经使用eclipse部署了一个可执行jar。 当我使用CMD发出以下命令时,它工作正常:
可见,我需要在执行JAR文件时提供模块。
如果跳过此步骤,则会得到JAR直接执行错误:
我已经尝试过使用maven作为:
--- Maven pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.proj1</groupId>
<artifactId>Proj1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<type>maven-plugin</type>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11.0.2</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>13-ea+7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<compilerArgs>
<arg>--add modules</arg><arg> javafx.controls,javafx.fxml,javafx.graphics</arg>
</compilerArgs>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.1</version>
<configuration>
<mainClass>org.openjfx.App</mainClass>
</configuration>
</plugin>
</plugins>
</build>
但是即使这样做,导出的可执行文件JAR仍然需要参数。
是否可以通过CMD避免这种情况,并只需使用Maven双击即可使JAR可执行。
我不是在问如何解决javaFx运行时异常,而是在问如何通过添加依赖项来解决它,以便在分发JAR时,客户端不必传递运行时参数即可通过单击来完成工作。
答案 0 :(得分:0)
使用JavaFX maven插件,您可以执行两个目标:run
和jlink
。前者将仅使用所需参数(--module-path
,--add-modules
)运行项目,因此您可以在命令行上运行:
mvn clean javafx:run
当然,这不是要分发的。
javafx:jlink
但是,如果您的项目是模块化的(即您有一个module-info.java
文件),则可以将插件设置为:
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<configuration>
<mainClass>hellofx/org.openjfx.App</mainClass>
<launcher>app</launcher>
<jlinkImageName>appDir</jlinkImageName>
<jlinkZipName>appZip</jlinkZipName>
</configuration>
</plugin>
并运行:
mvn clean javafx:jlink
它将与您的项目一起生成一个自定义的运行时映像,您可以分发该映像,还可以添加启动器甚至将其压缩。提取后,您只需要运行它即可:
target/appdir/app
请参阅插件选项here。
阴影插件
您也可以使用maven-shade-plugin
。
如here所述,您将需要一个不从Application
开始扩展的主类:
Launcher.java
package org.openjfx;
public class Launcher {
public static void main(String[] args) {
App.main(args);
}
}
现在您可以将阴影插件添加到pom:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.openjfx.Launcher</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
运行mvn clean package
,它将生成您的胖子罐,您可以将其分发并以以下方式运行:
java -jar target/hellofx-1.0-SNAPSHOT.jar
跨平台
请注意,在两种情况下(jlink或shade插件),您都将拥有一个jar,只能分发该jar才能在与您相同的平台上运行。
但是,如果还包括其他平台的依赖项,则可以使其具有多重平台:
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>12.0.1</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>12.0.1</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>12.0.1</version>
<classifier>win</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>12.0.1</version>
<classifier>linux</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>12.0.1</version>
<classifier>mac</classifier>
</dependency>