gpt4 book ai didi

clojure - 无法使用 Leiningen 2.5.2 运行 uberjar

转载 作者:行者123 更新时间:2023-12-02 17:04:55 29 4
gpt4 key购买 nike

我试图再次学习 Clojure,但一开始就遇到了困难。我下载了 lein,并复制了以下 project.cljhello.clj 以绝对确保我有一个最小的工作示例。

项目.clj:

(defproject hello "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]]
:uberjar {:aot :all}
:main hello.core
)

你好.clj:

(ns hello.core
(:gen-class)
)
(defn -main
"This should be pretty simple."
[]
(println "Hello, World!"))

当我运行“./lein uberjar”时,我收到以下警告:

Warning: specified :main without including it in :aot. 
Implicit AOT of :main will be removed in Leiningen 3.0.0.
If you only need AOT for your uberjar, consider adding :aot :all into your
:uberjar profile instead.
Warning: The Main-Class specified does not exist within the jar. It may not be executable as expected. A gen-class directive may be missing in the namespace which contains the main method.
Created .../target/hello-0.1.0-SNAPSHOT.jar
Created .../target/hello-0.1.0-SNAPSHOT-standalone.jar

尝试使用 ./lein runjava -jar ./target/hello-0.1.0-SNAPSHOT-standalone.jar 运行此程序会导致异常:

Can't find 'hello.core' as .class or .clj for lein run: please check the spelling.
Exception in thread "main" java.io.FileNotFoundException: Could not locate hello/core__init.class or hello/core.clj on classpath., compiling:(/private/var/folders/28/bk6d4xj123b0xvsvk91_1jg80009rn/T/form-init1007755193774766954.clj:1:125)

那么我的问题是什么?

最佳答案

:uberjar {:aot :all} -> :profiles {:uberjar {:aot :all}}

并将hello.clj移动到./src/hello目录中并重命名为core.clj

关于clojure - 无法使用 Leiningen 2.5.2 运行 uberjar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32554675/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com