JavaFX 应用程序线程 - 使用 Gluon Ignite 依赖注入(inject)时

标签 java javafx dependency-injection gluon-mobile javafxports

我正在使用 Gluon 的 Ignite 依赖注入(inject)库,当我运行此代码时,我收到以下错误。

public void initialize() {
    Platform.runLater(() -> {
                ApplicationContext context = new ClassPathXmlApplicationContext(this.getClass().getResource("DL4JBeans.xml").getPath());
                dL4JData = context.getBean("dL4JData", DL4JData.class);
                dL4JGlobalConfig = context.getBean("dL4JGlobalConfig", DL4JGlobalConfig.class);
                dL4JLayers = context.getBean("dL4JDataLayers", DL4JLayers.class);
                dL4JModel = context.getBean("dL4JModel", DL4JModel.class);
                ((ClassPathXmlApplicationContext) context).close();
            });
}

错误日志:

Exception in thread "JavaFX Application Thread" java.lang.NullPointerException
    at se.danielmartensson.views.NeuralNetworksPresenter.lambda$initialize$6(NeuralNetworksPresenter.java:140)
    at com.sun.javafx.application.PlatformImpl.lambda$null$5(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$6(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
    at com.sun.glass.ui.gtk.GtkApplication.enterNestedEventLoopImpl(Native Method)
    at com.sun.glass.ui.gtk.GtkApplication._enterNestedEventLoop(GtkApplication.java:211)
    at com.sun.glass.ui.Application.enterNestedEventLoop(Application.java:511)
    at com.sun.glass.ui.EventLoop.enter(EventLoop.java:107)
    at com.sun.javafx.tk.quantum.QuantumToolkit.enterNestedEventLoop(QuantumToolkit.java:590)
    at com.gluonhq.charm.glisten.control.Dialog.a(SourceFile:608)
    at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
    at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
    at javafx.beans.property.BooleanPropertyBase.fireValueChangedEvent(BooleanPropertyBase.java:103)
    at javafx.beans.property.ReadOnlyBooleanWrapper.fireValueChangedEvent(ReadOnlyBooleanWrapper.java:101)
    at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:110)
    at javafx.beans.property.BooleanPropertyBase.access$000(BooleanPropertyBase.java:49)
    at javafx.beans.property.BooleanPropertyBase$Listener.invalidated(BooleanPropertyBase.java:245)
    at com.sun.javafx.binding.ExpressionHelper$Generic.fireValueChangedEvent(ExpressionHelper.java:349)
    at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
    at javafx.beans.property.BooleanPropertyBase.fireValueChangedEvent(BooleanPropertyBase.java:103)
    at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:110)
    at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:144)
    at javafx.beans.property.BooleanProperty.setValue(BooleanProperty.java:81)
    at com.gluonhq.charm.glisten.layout.Layer.show(SourceFile:285)
    at com.gluonhq.charm.glisten.control.Dialog.showAndWait(SourceFile:559)
    at com.gluonhq.impl.charm.a.e.c.b(SourceFile:77)
    at com.sun.javafx.application.PlatformImpl.lambda$null$5(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$6(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
    at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
    at com.sun.glass.ui.gtk.GtkApplication.lambda$null$5(GtkApplication.java:139)
    at java.lang.Thread.run(Thread.java:748)

这是第 140 行。

ApplicationContext context = new ClassPathXmlApplicationContext(this.getClass().getResource("DL4JBeans.xml").getPath());

它没有给出文件未找到异常,只有线程应用程序错误。 这是我的 gradle 文件。

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'org.javafxports:jfxmobile-plugin:1.3.17'
    }
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
    jcenter()
    maven {
        url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
    }
}

mainClassName = 'se.danielmartensson.Main'

dependencies {
    compile 'com.gluonhq:charm:5.0.2'
    compile group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-beta4'
    compile group: 'org.nd4j', name: 'nd4j-native-platform', version: '1.0.0-beta4'
    compile group: 'org.datavec', name: 'datavec-api', version: '1.0.0-beta4'
    compile 'com.gluonhq:ignite-spring:1.0.2'
    compile group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
}

jfxmobile {
    downConfig {
        version = '3.8.6'
        // Do not edit the line below. Use Gluon Mobile Settings in your project context menu instead
        plugins 'display', 'lifecycle', 'statusbar', 'storage'
    }
    android {
        manifest = 'src/android/AndroidManifest.xml'
    }
    ios {
        infoPList = file('src/ios/Default-Info.plist')
        forceLinkClasses = [
                'se.danielmartensson.**.*',
                'com.gluonhq.**.*',
                'javax.annotations.**.*',
                'javax.inject.**.*',
                'javax.json.**.*',
                'org.glassfish.json.**.*'
        ]
    }
}

一件奇怪的事情是,即使我遇到这些错误,我仍然可以使用刚刚注入(inject)的依赖项中的方法。

这是我的文件夹结构的图像:

enter image description here

更新:

enter image description here

最佳答案

如果未找到资源,

getResource() 将返回 null。 我敢打赌它找不到 DL4JBeans.xml。

DL4JBeans.xml 应该是

  • 与 NeuralNetworksPresenter.java 位于同一文件夹中
  • 位于类路径中且与 NeuralNetworksPresenter 位于同一包中的资源文件夹中(即相同的文件夹结构)

关于JavaFX 应用程序线程 - 使用 Gluon Ignite 依赖注入(inject)时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57453693/

相关文章:

java - getImage 是否总是返回 imageJ 中的 Image 对象

java - FontAwesomeIconView 在 SceneBuilder 中显示图标,但在应用程序中失败

java - 将参数从一个 Controller 传递到另一个 Controller 会产生 java.lang.NullPointerException

twig 扩展中的 Symfony 依赖注入(inject)

java - 等待客户端读取消息的套接字服务器

java - Spring-WS:具有 WSDL 多节点分类法的 SimpleWsdl11Definition

java - 在Java中通过并行合并不等大小的列表来创建列表

java - 如何在 JavaFx 中将文本文件的行读入数组

spring - Kotlin 与 Spring DI : lateinit property has not been initialized

c# - 使用 CaSTLeWindsor 解决依赖关系