使用gradle运行我的简单javafx应用程序时遇到问题。
我有空白的标准sample.fxml文件:
<GridPane fx:controller="de.hhn.se.pmt.flowertours.controllers.Controller"
xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
</GridPane>
在我的src文件夹Intellij和gradle中,不要抱怨。 gradle构建成功执行,但gradle运行始终在xmlns:fx="http://javafx.com/fxml"
行上失败。
我的build.gradle看起来像这样:
plugins {
id 'java'
id 'checkstyle'
id 'jacoco'
id 'com.github.spotbugs' version '1.6.5'
}
apply plugin: 'application'
group 'de.hhn.se.pmt'
version '1.0-SNAPSHOT'
mainClassName = 'de.hhn.se.pmt.flowertours.Main'
allprojects{
compileJava {
options.encoding = 'UTF-8'
sourceCompatibility '1.8'
targetCompatibility '1.8'
}
repositories {
google()
jcenter()
mavenLocal()
mavenCentral()
}
}
repositories {
flatDir{
dirs "libs"
}
}
dependencies {
compile project (':gen')
compile name: 'orm'
compile name: 'jfxrt'
compile group: 'com.jfoenix', name: 'jfoenix', version: '1.2.0'
//logging with slf4j
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.24'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
//use JUnit 5
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
testCompile 'org.assertj:assertj-core:3.11.1'
}
添加的库omr和子项目gen尚未使用,因此不应执行(因此,它们不应该成为问题)。 jfxrt
库是修复它的尝试,并非必需。
我的Main.java看起来像这样:
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("/fxml/sample.fxml"));
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(root, 300, 275));
primaryStage.show();
}
/**
* "main" method that starts the program.
*
* @param args start parameter
*/
public static void main(String[] args) {
launch(args);
}
}
在运行时似乎缺少javafx库,但是将jfxrt
和runtime name: 'jfxrt'
包括在内并不能解决问题。
我做错了什么?我必须在Intellij中解决这个问题吗?
答案 0 :(得分:0)
仅是说清楚一点,我还没有找到任何真正的好答案-javafx和gradle并不是朋友,而intellij的实现版本则不容易。
从gradle插件application
中创建的Jar文件不包含所需的javafx文件-您需要包含openjfx中的新依赖项才能实际构建正在运行的javafx jar文件。
这是依赖项的设置,并不是真正需要的:
def currentOS = org.gradle.internal.os.OperatingSystem.current()
def platform
if (currentOS.isWindows()) {
platform = 'win'
} else if (currentOS.isLinux()) {
platform = 'linux'
} else if (currentOS.isMacOsX()) {
platform = 'mac'
}
这已添加到我的依赖项中:
compile "org.openjfx:javafx-base:11:${platform}"
compile "org.openjfx:javafx-graphics:11:${platform}"
compile "org.openjfx:javafx-controls:11:${platform}"
compile "org.openjfx:javafx-fxml:11:${platform}"
这些其他设置包括jar文件中的每个src文件-但这是一项正在进行的工作,可能不符合您的需求。
jar {
manifest {
attributes("Implementation-Title": project.name,
"Implementation-Version": version,
"Main-Class": 'com.your.full.path.to.Main'
)
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
from('src/main/resources/'){
include('database.properties')
into('')
}
}
sourceSets {
main {
resources {
srcDirs "src/main/resources", "src/main/configs"
}
}
}