JavaFX : Integrating Spring framework with JavaFX app(Incorrect configuration)

标签 java spring configuration javafx javafx-8

我正在开发一个 JavaFX 应用程序,我想将 Spring 功能与其集成。目前代码编译没有任何错误,但是当我请求标记为 @Transactional 和 @Service 的服务层方法时,我得到 NullPointerException。我不明白我在 Spring 配置中做错了什么。这是我的 JavaFX 代码:

主类:

public class Main extends Application {

    private static final SpringFxmlLoader loader = new SpringFxmlLoader();

    @Override
    public void start(Stage stage) throws Exception {
       Parent root = FXMLLoader.load(getClass().getClassLoader().getResource("login.fxml"));
        stage.setTitle("APPNAME");
        stage.setScene(new Scene(root, 300, 600));
        stage.setFullScreen(false);
        stage.setMaximized(false);
        stage.show();
    }
    public static void main(String[] args) {
        launch(args);
    }

}


@Configuration
@EnableTransactionManagement
@ComponentScan(basePackages = {"packagename"})
public class ApplicationConfiguration {


    @Bean
    public PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
        PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer = new PropertySourcesPlaceholderConfigurer();
        Properties properties = new Properties();
        propertySourcesPlaceholderConfigurer.setProperties(properties);
        return propertySourcesPlaceholderConfigurer;
    }

    @Bean
    public MessageSource messageSource() {
        ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
        messageSource.setBasenames("messages", "org.springframework.security.messages");
        messageSource.setUseCodeAsDefaultMessage(true);
        return messageSource;
    }
}

SpringLoader:

public class SpringFxmlLoader {

    private static final ApplicationContext applicationContext = new AnnotationConfigApplicationContext(ApplicationConfiguration.class);

    public Object load(String url) {
        try (InputStream fxmlStream = SpringFxmlLoader.class
                .getResourceAsStream(url)) {
            System.err.println(SpringFxmlLoader.class
                    .getResourceAsStream(url));
            FXMLLoader loader = new FXMLLoader();
            loader.setControllerFactory(new Callback<Class<?>, Object>() {
                @Override
                public Object call(Class<?> clazz) {
                    return applicationContext.getBean(clazz);
                }
            });
            return loader.load(fxmlStream);
        } catch (IOException ioException) {
            throw new RuntimeException(ioException);
        }
    }
}

现在在我的 Controller 中,我有这样的东西:

@Component
public class Controller implements Initializable {
 @FXML
    public TextField usernameField;
    @FXML
    public PasswordField passwordField;
    @FXML
    public Button submitButton;
@Autowired
    private PersonService personService;
// Now the above personService throws me a NPE.
}

我是否以某种方式搞乱了 JavaFX 的 Spring 配置?请告诉我。多谢。 :-)

更新

根据 James D..的建议进行更改后,我收到以下错误:

null
Exception in Application start method
Exception in thread "main" java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$152(LauncherImpl.java:182)
    at com.sun.javafx.application.LauncherImpl$$Lambda$2/1058634310.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.NullPointerException: inputStream is null.
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2459)
    at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2429)
    at tooltank.MainClass.SpringFxmlLoader.load(SpringFxmlLoader.java:28)
    at tooltank.MainClass.Main.start(Main.java:15)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$159(LauncherImpl.java:863)
    at com.sun.javafx.application.LauncherImpl$$Lambda$57/667705538.run(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$172(PlatformImpl.java:326)
    at com.sun.javafx.application.PlatformImpl$$Lambda$53/767743416.run(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$null$170(PlatformImpl.java:295)
    at com.sun.javafx.application.PlatformImpl$$Lambda$55/1195477817.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$171(PlatformImpl.java:294)
    at com.sun.javafx.application.PlatformImpl$$Lambda$54/1403425489.run(Unknown Source)
    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$48(GtkApplication.java:139)
    at com.sun.glass.ui.gtk.GtkApplication$$Lambda$43/1429486634.run(Unknown Source)
    ... 1 more

Process finished with exit code 1

它发生在 SpringFXMLLoader.java 中的以下行:

 return loader.load(fxmlStream);

最佳答案

您已经创建了一个SpringFxmlLoader,但您没有使用它。你想要

SpringFxmlLoader loader = new SpringFxmlLoader();
Parent root = (Parent) loader.load(getClass().getResource("login.fxml").toExternalForm());

而不是直接使用FXMLLoader

实际上,我会以不同的方式编写 SpringFxmlLoader,以便它更紧密地匹配标准 FXMLLoader API:

public class SpringFxmlLoader {

    private static final ApplicationContext applicationContext = new AnnotationConfigApplicationContext(ApplicationConfiguration.class);

    public <T> T load(URL url) {
        try  {
            FXMLLoader loader = new FXMLLoader(url);
            loader.setControllerFactory(applicationContext::getBean);
            return loader.load();
        } catch (IOException ioException) {
            throw new RuntimeException(ioException);
        }
    }
}

那么你的启动方法如下所示:

SpringFxmlLoader loader = new SpringFxmlLoader();
Parent root = loader.load(getClass().getResource("login.fxml"));

您可能需要修改确切的路径才能使事情正确,具体取决于您的设置。

关于JavaFX : Integrating Spring framework with JavaFX app(Incorrect configuration),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31164743/

相关文章:

java - 在我的 android 程序中播放 swf 文件 (flash) 的最佳方式?

java - 当 validator 发现表单错误时,表单页面将在 POST url 处重新显示

eclipse - 无法配置 Eclipse 以使用 EPIC 插件运行 perl 脚本?

java - Spring - 使用值注释从本地配置文件中读取

python - 从配置文件 Python 中读取值

java - Android:异步任务:doInBackground 在 Action 回调之前返回

Java Linkedhashmap 与 ArrayList 空 checkin

java - 运行helloworld时出错+classpath问题

java - Spring Security 过滤器有多个 URL 拦截映射

java - 无法使用 Maven 导入 o​​rg.springframework.jdbc.core