上下文:尝试使用OpenJdK11和OpenJFx11创建一个简单的JavaFx应用程序
问题:尝试执行时出现以下错误
Error: JavaFX runtime components are missing, and are required to run this application
我提到了Link1和Link2。我还提到了“ JavaFx11入门”-Link 正如在尝试指定运行配置时的入门中所建议的那样,我收到一条消息,如
所示run' in 'build' cannot be applied to '(groovy.lang.Closure)' less... (Ctrl+F1)
希望所面临的问题是明确的,并等待有关我要去哪里的信息。 (使用IntelliJ ide)
代码:
主-
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("/Sample.fxml"));
StackPane stackPane = new StackPane(root);
Scene scene = new Scene(stackPane);
primaryStage.initStyle(StageStyle.TRANSPARENT);
primaryStage.setScene(scene);
primaryStage.show();
}
}
FXML-
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="Controller"
prefHeight="400.0" prefWidth="600.0">
</AnchorPane>
成绩-
plugins {
id 'java'
}
group 'testJavaFx'
version '1.0-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
dependencies {
compile 'org.openjfx:javafx-base:11:win'
compile 'org.openjfx:javafx-controls:11:win'
compile 'org.openjfx:javafx-fxml:11:win'
compile 'org.openjfx:javafx-graphics:11:win'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileJava {
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'javafx.controls'
]
}
}
run {
doFirst {
jvmArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'javafx.controls'
]
}
}
答案 0 :(得分:6)
我从JavaFX的官方存储库中找到了一种解决方案:https://github.com/javafxports/openjdk-jfx/issues/236
尽管有一些简单的解决方法。例如,您可以有一个不扩展javafx.application.Application的主类,然后该主类可以在您的实际主类上调用main(String [])方法(这样,Java启动器不需要javafx库可以作为命名模块使用。
我用Intellij IDEA创建了一个Java工件,它可以工作(无需使用gradle)。