JDK 11和JavaFX 11:ARM(Tinker Board)的构建未运行(哈希不匹配)

问题描述 投票:5回答:1

我有一个JavaFX 8项目,我在Windows 10上使用NetBeans 8.2开发。我建立的JAR是在Asus Tinker Board上运行的。

使用JDK 11和JavaFX 11,我希望利用一些新功能,并希望获得一些性能提升。在安装NetBeans 10之后,在本教程的帮助下:https://openjfx.io/openjfx-docs/#introduction(JavaFX和NetBeans>使用Maven进行非模块化),我已经成功移植并可以在我的Windows系统上运行该应用程序。

通过IDE或命令提示符:java --module-path%PATH_TO_FX% - add-modules = javafx.c ontrols,javafx.fxml,javafx.graphics,javafx.media -jar Praatpaal2-2.0-jar-with -dependencies.jar

与JavaFX 8相比,JavaFX模块现在作为模块添加。

但是当我在Asus Tinker Board(运行Tinker OS(Debian))上做同样的事情时,我收到以下错误:

初始化引导层java.lang.module.FindException期间发生错误:javafx.base(d87df23ee5c54c7ff062c4f8572bab8aaf6c1775854662008fccdb993957bcad)的哈希值与java.base中记录的预期哈希值(320c5b0ffaf22fec9daf0c3e364f6598631b333fa95015a0f055e1c1c597c05b)不同

关于此哈希不匹配的信息非常少。我怀疑是它要么尝试加载Windows版本的javafx.base.jar,要么我在Maven pom.xml中使用org.openjfx但是在运行时引用GluonHQ JavaFX,或者我的模块化设置有问题。

pom.xml的依赖项和构建部分如下所示:

<dependencies>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-controls</artifactId>
            <version>11.0.2</version>
            <classifier>win</classifier>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-fxml</artifactId>
            <version>11.0.2</version>
            <classifier>win</classifier>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-graphics</artifactId>
            <version>11.0.2</version>
            <classifier>win</classifier>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-media</artifactId>
            <version>11.0.2</version>
            <classifier>win</classifier>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-controls</artifactId>
            <version>11.0.2</version>
            <classifier>linux</classifier>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-fxml</artifactId>
            <version>11.0.2</version>
            <classifier>linux</classifier>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-graphics</artifactId>
            <version>11.0.2</version>
            <classifier>linux</classifier>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-media</artifactId>
            <version>11.0.2</version>
            <classifier>linux</classifier>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.6</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.8.1</version>
        </dependency>
        <dependency>
            <groupId>net.samuelcampos</groupId>
            <artifactId>usbdrivedetector</artifactId>
            <version>2.0.4</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <release>11</release>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.6.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>java</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>nl.embeddedfitness.praatpaal2.Main</mainClass>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <archive>
                            <manifest>
                                <mainClass>
                                    nl.embeddedfitness.praatpaal2.Main
                                </mainClass>
                            </manifest>
                            </archive>
                            <descriptorRefs>
                                <descriptorRef>jar-with-dependencies</descriptorRef>
                            </descriptorRefs>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

我已尝试使用和不使用分类器的4个JavaFX依赖项。但这没有区别。 jar-with-dependencies使用所有依赖项构建jar,除了我在运行时使用前面提到的java命令添加的JavaFX。

对于Java 11,我使用: https://bell-sw.com/pages/java-11.0.2 用于Windows系统的Microsoft Windows 64位 用于华硕Tinker Board的Linux ARMv7和8 32位HardFloat

对于JavaFX 11,我使用: https://gluonhq.com/products/javafx/ 适用于Windows系统的JavaFX Windows SDK 用于华硕Tinker Board的JavaFX armv6hf SDK

java javafx java-11 javafx-11 openjfx
1个回答
1
投票

在JoséPereda的帮助下,我记得我安装了没有JavaFX模块的Lites版本的Bellsoft JDK。我现在拥有这些模块的完整版本。我认为我不需要那些因为我会参考GluonHQ Java FX软件包(--add-modules)。 Bellsoft不包含JavaFX Media,所以我现在尝试使用Bellsoft JDK Java FX模块,但是只通过--add-modules添加Media,尽管可能是Media不存在/不适用于ARM(尚)。

© www.soinside.com 2019 - 2024. All rights reserved.