我有一个使用Java fx的Java 8项目。我最近切换到Java11和OpenJFX11。
使用gradle run或JVM参数,一切都可以正常运行。 但是一旦我构建了一个jar,由于以下错误,可执行jar将不会执行:
错误:无法找到或加载主类sample.application.main.SampleAppLauncher
原因:java.lang.NoClassDefFoundError:javafx / application / Application
buildscript {
dependencies {
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.7.0'
classpath 'org.openjfx:javafx:11'
}
repositories {
mavenLocal()
mavenCentral()
}
}
plugins {
id 'java'
id 'java-library'
id 'maven-publish'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
sourceCompatibility = 11
targetCompatibility = 11
repositories {
jcenter()
mavenCentral()
}
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
archiveClassifier.set("sources")
}
task javadocJar(type: Jar, dependsOn: javadoc) {
archiveClassifier.set("javadoc")
from javadoc.destinationDir
}
mainClassName="sample.application.main.Launcher"
publishing {
publications {
mavenAar(MavenPublication) {
from components.java
afterEvaluate {
artifact javadocJar
artifact sourcesJar
}
}
}
}
javafx {
version = "11"
modules = [ 'javafx.controls', 'javafx.fxml','javafx.graphics']
}
sourceSets {
main.java.srcDir "src/main/java"
main.resources.srcDir "src/main/resources"
}
dependencies {
api 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.google.guava:guava:27.0.1-jre'
testImplementation 'junit:junit:4.12'
implementation 'org.openjfx:javafx:11'
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.28.0'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile group: 'org.reflections', name: 'reflections', version: '0.9.11'
compile group: 'org.openjfx', name: 'javafx', version: '11'
}
jar {
manifest {
attributes(
'Main-Class': 'sample.application.main.Launcher'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
我是否需要为常规Jar Build定义更多内容? 我现在唯一知道的方法是使用带有JVM参数以及openjfx-11路径的Application运行应用程序。 但这在没有JavaFX11的任何其他系统上将不起作用。
我认为它将像所有其他依赖项一样由gradle编译到jar中。
JFX11是否有其他区别?
编辑:
应用程序类:
public class SampleAppLauncher extends Application {
@Override
public void start(Stage stage) throws Exception {
\\... startup
}
}
启动器:
public class Launcher {
public static void main(String[] args) {
SampleAppLauncher.launch(args);
}
}
模块信息
module FXproject {
requires javafx.controls;
requires javafx.fxml;
requires transitive javafx.graphics;
opens sample.application.main to javafx.fxml;
exports sample.application.main;
}