从 Maven 项目创建工作 .jar - JavaFX (Afterburner.fx) 项目:当前卡在错误消息中

Create working .jar out of Maven-Project - JavaFX (Afterburner.fx) Project : Currently stuck with Errormessage

我使用 afterburner.fx 框架创建了一个小型 JavaFx 项目。 当我在 IDE (IntelliJ) 中启动它时它工作正常,但是在我通过 "maven-assembly-plugin" 从中创建一个胖 .jar 之后它无法打开第二个视图。


Pom.xml:

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>3.1.0</version>
            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>

            </configuration>
            <executions>
                <execution>
                    <id>assemble-all</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>3.1.0</version>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
                        <mainClass>com.company.Main</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>

SetupPresenter.onStart():

public void onStart(){
    InProgressView inProgressScreen = new InProgressView();
    Scene scene = new Scene(inProgressScreen.getView());
    window.setScene(scene);
    window.setTitle("Currently Running");
    window.show();

    SetRating app = new SetRating();
    new Thread(app).start();
}

错误信息:

Caused by: java.lang.IllegalStateException: Cannot load file InProgress.fxml
    at com.airhacks.afterburner.views.FXMLView.getResourceCamelOrLowerCase(FXMLView.java:221)
    at com.airhacks.afterburner.views.FXMLView.getFXMLName(FXMLView.java:205)
    at com.airhacks.afterburner.views.FXMLView.<init>(FXMLView.java:83)
    at com.airhacks.afterburner.views.FXMLView.<init>(FXMLView.java:72)
    at com.company.gui.inProgress.InProgressView.<init>(InProgressView.java:5)
    at com.company.gui.setup.SetupPresenter.onStart(SetupPresenter.java:41)
    ... 58 more

当您不在 pom.xml 中包含 .fxml 时,您在 IDE 中得到的相同错误消息 如下所示:

<resources>
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.fxml</include>
                <include>**/*.css</include>
                <include>**/*.properties</include>
                <include>**/*.png</include>
            </includes>
        </resource>

所以可能与它有关。 但正如我所说,第一个视图已加载并以与第二个视图完全相同的方式启动:

@Override
public void start(Stage stage) {
    window = stage;

    SetupView setupScreen = new SetupView();
    Scene scene = new Scene(setupScreen.getView());
    window.setScene(scene);
    window.setTitle("ScotlandYard");
    window.show();

}

我今天试图自己找到解决方案,并尝试以各种其他方式生成 fat .jar,但无法获得 运行 .jar。

我找到了答案

我的解决方案只是重命名 .fxml 文件以开始大写: 例如,我将 view1.fxml 重命名为 View1.fxml。 我想这与 windows 访问 jar/zip.

中的文件的方式有关