我是JavaFX新手。我使用Maven创建了一个Hello World项目。当我在Eclipse中运行时,它工作得很好。
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("Hello World!");
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}
当我试图使用build.fxbuild构建应用程序时,我得到了这个错误。
Buildfile: C:\test\project\workspace\javafx-helloworld\build\build.xml setup-staging-area: [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\externalLibs [copy] Copying 1 file to C:\test\project\workspace\javafx-helloworld\build\externalLibs [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\project [copy] Copying 1 file to C:\test\project\workspace\javafx-helloworld\build\project [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\projectRefs do-compile: [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\build\src [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\build\libs [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\build\classes [copy] Copying 1 file to C:\test\project\workspace\javafx-helloworld\build\build\libs [copy] Copying 1 file to C:\test\project\workspace\javafx-helloworld\build\build\src [javac] Compiling 1 source file to C:\test\project\workspace\javafx-helloworld\build\build\classes init-fx-tasks: [taskdef] Could not load definitions from resource com/sun/javafx/tools/ant/antlib.xml. It could not be found. do-deploy: [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\dist [mkdir] Created dir: C:\test\project\workspace\javafx-helloworld\build\dist\libs [copy] Copying 1 file to C:\test\project\workspace\javafx-helloworld\build\dist\libs **BUILD FAILED C:\test\project\workspace\javafx-helloworld\build\build.xml:93: Problem: failed to create task or type javafx:com.sun.javafx.tools.ant:resources Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been declared. Action: Check that any / declarations have taken place. No types or tasks have been defined in this namespace yet**
现在有一个用于JavaFX的maven插件:
https://github.com/zonski/javafx-maven-plugin
<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>[put your application main class here]</mainClass>
<bundleType>ALL</bundleType>
</configuration>
</plugin>
问题内容: 我的问题可以通过在Netbeans 8中创建一个新项目来重现: 新项目>> Maven >> JavaFX应用程序 然后添加org.springframework spring-context依赖项。 构建时间从几秒钟增加到超过半分钟,这大部分是由于运行javafxpackager引起的。 我可以使用缓慢发布的版本,但是如何加快开发版本? 这是我的pom.xml: 谢谢!丹尼尔 问题答
问题:从Eclipse IDE运行基于Maven非模块项目(project name=“howdyJFX”)的JavaFX应用程序会生成以下编译错误: 开发环境和配置: null 上面的配置和代码是基于“入门”指南和Sr.Jose Pereda的Github帖子,以及对去年9月提出的类似问题的回答。然而,不管出于什么原因,我不能让这个工作。这更令人沮丧,因为我正在完成一个大量的JFX控件库,这些控
问题内容: 我对Maven的口头禅还比较陌生,但是我正在尝试使用Maven构建命令行可运行jar。我已经设置了依赖项,但是当我运行并尝试运行jar时,会发生两件事。首先,没有找到可纠正的主类。更正此错误后,在运行时出现错误,指出找不到类。 Maven没有将我的依赖库打包在jar中,因此我无法将jar作为独立应用程序运行。我该如何纠正? 问题答案: 最简单的方法是使用和预定义描述符创建一个程序集。您
问题内容: 我正在尝试使用Gradle构建相对简单的JavaFX应用程序。但是,我不知道该怎么做。 我是Gradle的新手,对于简单的(非javafx)项目,我已经成功使用了插件,并构建和打包了库和命令行应用程序。 但是,关于JavaFX,我完全陷入困境。我已经阅读了这篇文章,该文章建议使用该插件,但是我只能找到该插件的源代码,但是没有关于如何实际使用它的文档(在文章中,他们只是从远程URL应用它
我试图使用Gradle构建一个相对简单的JavaFX应用程序。但是,我完全不知道该怎么做。 我对Gradle比较陌生,对于简单的(非JavaFX)项目,我已经成功地使用了插件和来构建和打包库和命令行应用程序。 然而,当涉及到JavaFX时,我完全被卡住了。我读过这篇文章,其中建议使用插件,但是我只能找到这个插件的源代码,而没有关于如何实际获取它和使用它的文档(在文章中,他们只是从远程URL应用它,
作为一个软件开发人员,我需要做哪些步骤来允许我的JavaFX应用程序与JDK11+一起运行?有什么好的广告吗?是否可以通过Gradle获得OpenJDK?