我有一个使用“lein uberjar”构建的小型命令行 Clojure 应用程序。结果 jar 文件在启动时不会调用我的 main 函数,也不会给我任何类型的堆栈跟踪或其他错误情况指示。
% lein version
Leiningen 2.0.0 on Java 1.7.0_10 Java HotSpot(TM) 64-Bit Server VM
% lein uberjar
Compiling spelunker.core
Compiling spelunker.core
Created /Users/temerson/Work/ddp-qa-tool/spelunker/target/spelunker-0.1.0-SNAPSHOT.jar
Including spelunker-0.1.0-SNAPSHOT.jar
Including lucene-core-3.6.2.jar
Including clojure-1.4.0.jar
Created /Users/temerson/Work/ddp-qa-tool/spelunker/target/spelunker-0.1.0-SNAPSHOT-standalone.jar
% java -jar target/spelunker-0.1.0-SNAPSHOT-standalone.jar
%
它应该显示一条使用消息,而不是任何内容。我已经检查了(对我而言)显而易见的事情:我的项目文件包含
(defproject spelunker "0.1.0-SNAPSHOT"
:description "Spelunk through Lucene data to find nuggets of useful data."
:dependencies [[org.clojure/clojure "1.4.0"]
[org.apache.lucene/lucene-core "3.6.2"]]
:main spelunker.core
:aot [spelunker.core])
和 spelunker/core.clj 包括
(ns spelunker.core
(:import (org.apache.lucene.analysis.standard StandardAnalyzer)
(org.apache.lucene.document Document Field Field$Store Field$Index)
(org.apache.lucene.index IndexReader IndexWriter IndexWriter$MaxFieldLength)
(org.apache.lucene.store NIOFSDirectory RAMDirectory)
(org.apache.lucene.util Version))
(:gen-class))
并且主要功能是这样定义的(现在):
(defn -main [& args]
(print "DAFUQ?"))
出于所有意图和目的,这应该有效:如果我用leiningen app new
它创建一个存根应用程序就可以了。但与上述无关。
如果我至少得到某种堆栈跟踪(即我可以调查的东西),我会感觉很好,但是沉默正在杀死我。
有人有想法么?
非常感谢。