2

我正在尝试以 .jar 和 .war 格式部署 Clojure 应用程序。到目前为止,我已经成功部署了一个 .jar;我正在研究.war。该应用程序只是一个测试应用程序,旨在展示 Clojure 和 JavaFX 的一些功能。我的意思是通过 AWS Elastic Beanstalk 将它部署到我刚刚开始设置的网站。目前,该应用程序仅显示一堆模糊的圆圈,在 600x600 的舞台上移动 40 秒。然而,即使应用程序在这 40 秒内成功运行,它总是在 40 秒的动画之后突然终止。我的 project.clj 文件如下所示:

(defproject clojurefx/arg "0.0.10-SNAPSHOT"
  :description "Helper functions and probably a wrapper to simplify usage of JavaFX in Clojure.
                This is meant to be used with Java 8.
                ..."
  :url "https://www.github.com/zilti/clojurefx" ; my project is essentially forked from this project
  :lein-release {:deploy-via :clojars}
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :dependencies [[org.clojure/clojure "1.5.1"]]
  :plugins [[lein-marginalia "0.7.1"]
            ...]
  :profiles {:dev {:dependencies [[midje "1.6-beta1"]]}}
  :main clojurefx.arg.splashpage
  :aot [clojurefx.arg.splashpage])

这是-main函数所在的位置:

(ns clojurefx.arg.splashpage
  (:require
    [clojure.reflect :as clj-r]
    [clojure.stacktrace :as stacktrace]
    [clojurefx.arg.core :as core]
    [clojurefx.arg.core :refer [deffx]]
    ...)
  (:import
    (javafx.scene.text Font FontPosture FontWeight Text)
    ...)
  (:gen-class))

(defn -main [& args]
  (println "Up and running! The arguments supplied were: " args))

;=====JavaFX visual objects initialized and displayed with the code below=====
;-----Root-----
(deffx rt group)
;-----Scene/Window-----
(deffx scn scene
  :width 600
  :height 600
  :root rt
  :fill (. Color BLACK))
;-----Stage/Window-surround-----
(deffx stg stage
  :title "Colorful Circles"
...
(dofx (.show stg)) ; shows the JavaFX window with the circle animation
(dofx (.play tmln)) ; play 40s of animation

正如我所说,动画可以正常播放 40 秒,但此时出现以下异常:

-> Exception in thread "main" java.lang.ExceptionInInitializerError
->   at clojure.main.main(main.java:37)
     ... ; a long list of traced errors
-> Caused by: java.lang.IllegalStateException: Toolkit not initialized
     ... ; a long list of traced errors
-> Exception in thread "Thread-4" clojure.lang.ExceptionInfo: Subprocess failed {:exit-code 1}
     ... ; a long list of traced errors
->   at java.lang.Thread.run(Thread.java:724)

我认为这可能与 JavaFX 线程的工作方式有关。当动画停止运行时,可能会有某种超时。相比之下,当我注释掉main clojurefx.arg.splashpageand :aot [clojurefx.arg.splashpage])inproject.clj并手动将文件中的代码复制、粘贴和评估splashpage.clj到 REPL 中时,没有超时。此外,当我将 JavaFX 对象初始化和显示的代码放在一个函数中时,比如说(init-stage),这样在显式调用函数之前不会在运行时评估代码,“超时”在 JVM 启动后立即开始并(-main)调用该函数。

想法?我意识到知道 Clojure 的人与知道 JavaFX 8 的人的交集非常小……

附加信息:

我还有另一个相关的问题。现在,当我尝试部署 .jar 文件时,该文件已成功创建,如下所示:

Alexanders-MacBook-Pro:cljfx-arg alexandergunnarson$ lein uberjar
Compiling clojurefx.arg.splashpage
Created /Users/alexandergunnarson/.lein/cljfx-arg/target/arg-0.0.10-SNAPSHOT.jar
Created /Users/alexandergunnarson/.lein/cljfx-arg/target/arg-0.0.10-SNAPSHOT-standalone.jar

但是当我在我的 Mac(无论是否独立)上运行 .jar 时,OS X 会显示“无法启动该文件”。此外,实际创建 .jar 的点是动画停止或我退出main显示动画的应用程序(JVM)的点。

4

1 回答 1

0

对此的回答是,对于某些要导入的 JavaFX 类,需要调用以下命令:

(defonce force-toolkit-init (javafx.embed.swing.JFXPanel.))

defonce用于确保工具包不会以某种方式重新初始化。

甚至在导入任何 JavaFX 类之前声明它可能是明智的。

于 2014-08-24T02:54:30.363 回答