我正在尝试以.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.splashpage
中注释掉:aot [clojurefx.arg.splashpage])
和project.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)的点。
答案 0 :(得分:0)
对此的答案是,对于要导入的某些JavaFX类,需要调用以下内容:
(defonce force-toolkit-init (javafx.embed.swing.JFXPanel.))
defonce
用于确保工具包不会以某种方式重新初始化。
在导入任何JavaFX类之前,甚至可以建议这样做。