(require) 函数的 clojure 类路径问题?
CLASSPATH 将“/Users/smcho/Desktop/clojure”作为其路径之一,并且该目录具有文件 hello.clj。
运行 clojure 并运行 (require 'hello) 会给出此错误消息。
java.io.FileNotFoundException: Could not locate hello__init.class or hello.clj on classpath: (NO_SOURCE_FILE:0)
当我将目录更改为“/Users/.../clojure”并运行相同的命令(需要'hello)时,没有问题。这 。位于 CLASSPATH 中。
跑步
java -cp /Users/smcho/bin/jar/clojure.jar:/Users/smcho/Desktop/clojure clojure.lang.Repl
也有效果。
为什么 clojure 在 CLASSPATH 中找不到源代码?
CLASSPATH has the "/Users/smcho/Desktop/clojure" as one of its path, and this directory has the file hello.clj.
Running clojure, and running (require 'hello) give this error message.
java.io.FileNotFoundException: Could not locate hello__init.class or hello.clj on classpath: (NO_SOURCE_FILE:0)
When I change directory to "/Users/.../clojure", and run the same (require 'hello), there's no problem. The . is on the CLASSPATH.
Running
java -cp /Users/smcho/bin/jar/clojure.jar:/Users/smcho/Desktop/clojure clojure.lang.Repl
also works.
Why clojure can't find the source on the CLASSPATH?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就像 Alex 提到的,如果您使用 -cp 参数启动 java,则不会引用 CLASSPATH 环境。 而不是
使用:
因此,您可以从 Clojure repl 中检查 java 类路径,
Like Alex mentioned, if you start java with the -cp argument, then the CLASSPATH environment is not referenced. So, instead of
use
You can examine your java classpath from within the Clojure repl:
您没有指定第一个示例使用的命令行,但请注意,如果使用
-cp
标志,则不会引用 CLASSPATH 环境变量。You didn't specify what commandline you used for the first example, but note that if you use the
-cp
flag, the CLASSPATH environment variable is not referenced.