我是Clojure的新手,而且我不太了解如何编写project.clj
,因此它对lein repl
和lein run
都适用。这是(整个路径:~/my-project/project.clj
):
(defproject my-project "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]]
:main my-project.core/hello
)
然后我有
~/my-project/src/my_project/core.clj
文件(ns my-project.core)
(defn hello []
(println "Hello world!")
)
lein run
可以正常工作,但是运行FileNotFoundException
时我得到了lein repl
:~/my-project$ lein run
Hello world!
~/my-project$ lein repl
REPL started; server listening on localhost port 42144
FileNotFoundException Could not locate hello__init.class or hello.clj on classpath: clojure.lang.RT.load (RT.java:430)
clojure.core=>
我应该如何编辑
project.clj
来解决这个问题?还是我必须以其他方式调用lein repl
?提前致谢。
编辑:尝试使用
lein dep
和lein compile
,但是仍然存在相同的错误~/my-project$ lein version
Leiningen 1.7.1 on Java 1.6.0_27 OpenJDK Client VM
~/my-project$ lein deps
Copying 1 file to /home/yasin/Programming/Clojure/my-project/lib
~/my-project$ lein compile
No namespaces to :aot compile listed in project.clj.
~/my-project$ lein repl
REPL started; server listening on localhost port 41945
FileNotFoundException Could not locate hello__init.class or hello.clj on classpath: clojure.lang.RT.load (RT.java:430)
最佳答案
要使其正常工作,您可以做的一件事就是将core.clj
更改为:
(ns my-project.core
(:gen-class))
(defn hello []
(println "Hello world!"))
(defn -main []
(hello))
并将
project.clj
编辑为:(defproject my-project "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]]
:main my-project.core)
(:gen-class)
将告诉编译器为命名空间生成一个Java类,并且:main
中的project.clj
指令将告诉lein run
在该类上运行main方法,该方法由-main
给出。我不清楚为什么lein repl
无法找到my-project.core/hello
,但是我对leiningen的内部知识并不了解。关于clojure - 如何为lein run和lein repl都定义project.clj?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15339047/