gpt4 book ai didi

java - 使用 Leiningen 部署 Clojure 应用程序

转载 作者:太空狗 更新时间:2023-10-29 22:44:28 25 4
gpt4 key购买 nike

到目前为止,这是我的 project.clj 文件:

(defproject raj "0.0.1-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]]
:keep-non-project-classes true
:main raj.core)

还有我的 core.clj 文件:

(ns raj.core
(:use raj.core))

(defn -main [& args]
(println "Hello World!!!"))

lein run -m raj.core 正常显示 Hello World 消息。所以接下来我尝试 lein uberjar 并获得

Compiling raj.core
Compilation succeeded.
Created C:\Users\bobjones\IdeaProjects\raj/raj-0.0.1-SNAPSHOT.jar
Including raj-0.0.1-SNAPSHOT.jar
Including clojure-1.3.0.jar
Created C:\Users\bobjones\IdeaProjects\raj/raj-0.0.1-SNAPSHOT-standalone.jar

到目前为止一切似乎都很顺利,所以我尝试了 java -jar raj-0.0.1-SNAPSHOT-standalone.jar,我收到了

Error: Could not find or load main class raj.core

我会在这里做错什么?

最佳答案

您需要向raj.core 命名空间添加一个:gen-class 声明:

(ns raj.core
(:use raj.core)
(:gen-class))

关于java - 使用 Leiningen 部署 Clojure 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8628753/

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