缺少 JavaFX 运行时组件,即使我的 VM 选项和模块中已经有了它们
Posted
技术标签:
【中文标题】缺少 JavaFX 运行时组件,即使我的 VM 选项和模块中已经有了它们【英文标题】:JavaFX runtime components are missing, even though I already have them in my VM options and Modules 【发布时间】:2021-12-26 07:36:06 【问题描述】:我收到此错误:
Error: JavaFX runtime components are missing, and are required to run this application
Process finished with exit code 1
我在 YouTube 和 *** 上查看了多个解决方案,例如 https://www.youtube.com/watch?v=KKI7tDozPog 和 Error: JavaFX runtime components are missing, and are required to run this application with JDK 11
因此,我听从了他们的建议,并将他们所说的添加到我的 VM 选项中。这就是我的运行配置中的内容
尽管如此,我还是遇到了这个错误。
这是我的一些代码:
我的 pom.xml 文件
<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>proj4</artifactId>
<version>1.0-SNAPSHOT</version>
<name>proj4</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.7.1</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>17-ea+11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>17-ea+11</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.6</version>
<executions>
<execution>
<!-- Default configuration for running with: mvn clean javafx:run -->
<id>default-cli</id>
<configuration>
<mainClass>com.example.proj4/application.proj4.PizzeriaApplication</mainClass>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我的申请
package application.proj4;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import java.io.IOException;
public class PizzeriaApplication extends Application
/**
* This method is the start of the application.
* @param stage A Stage object
* @throws IOException An IOException object
*/
@Override
public void start(Stage stage) throws IOException
FXMLLoader fxmlLoader = new FXMLLoader(PizzeriaApplication.class.getResource("pizzeria-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 800, 600);
stage.setTitle("RU Pizzeria");
stage.setResizable(false);
stage.setScene(scene);
stage.show();
//This closes the entire application if the Main Menu window is closed
stage.setOnCloseRequest(t ->
Platform.exit();
System.exit(0);
);
/**
* This method launches the application.
* @param args An array of Strings
*/
public static void main(String[] args)
launch();
我在项目结构模块中的依赖关系
感谢回复。
【问题讨论】:
我猜一小时之内很快。我编辑了这篇文章。 @ScaryWombat 如果您将格式为多行代码文本的完整错误消息(不是屏幕截图)以及用于运行应用程序的命令(也格式为代码)放在问题中,则更容易帮助解决问题。 请不要截图纯文本 @jewelsea,我确实将错误消息作为文本输入,它是第一个代码框。 但是你没有输入运行应用程序的命令文本,这是能够理解和回答这个问题的关键。完整的命令行由idea在console tab中显示,当你运行程序时,你可以从那里复制文本,你不需要截图并且截图不显示使用的完整命令行,所以它无助于理解或解决问题。 【参考方案1】:好的,所以我找到了发生这种情况的原因。
我将模块路径和添加模块放在程序参数中,而不是在 vm 选项中,这就是导致红色问题的原因。
现在我遇到了“启动层初始化期间发生错误”问题。
【讨论】:
建议您关闭此问题,因为您已解决此问题,如果您仍有问题,请发布另一个问题 很遗憾,两天内我都无法解决我自己的问题。我还必须等待 90 分钟才能发布另一个问题。 您可能想看看我在***.com/questions/66630618/… 上的回答我发现这是将 JavaFX 添加到项目中的更好方法,而不是更改 VM 选项 - 并且更符合预期java模块的使用 如果您找到了解决方案,请关闭此问题 @HarryCoder 不,这个问题不需要关闭。可以是self-answered。而且我相信当前的自我回答对未来可能会遇到同样问题的开发人员很有用。几天后,当系统允许时,Josh S 可以将自我回答标记为正确。以上是关于缺少 JavaFX 运行时组件,即使我的 VM 选项和模块中已经有了它们的主要内容,如果未能解决你的问题,请参考以下文章
错误:缺少 JavaFX 运行时组件 - JavaFX 11 和 OpenJDK 11 以及 Eclipse IDE
Gradle OpenJFx11:错误 - 缺少 JavaFx 运行时组件
使用 Launch4j VM 参数路径包装的 JavaFX 项目