Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

clojure classpath problem for (require) function?

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?

like image 787
prosseek Avatar asked Jul 24 '26 15:07

prosseek


2 Answers

Like Alex mentioned, if you start java with the -cp argument, then the CLASSPATH environment is not referenced. So, instead of

java -cp /Users/smcho/bin/jar/clojure.jar clojure.lang.Repl

use

java -cp /Users/smcho/bin/jar/clojure.jar:$CLASSPATH clojure.lang.Repl

You can examine your java classpath from within the Clojure repl:

(doseq [p (.getURLs (java.lang.ClassLoader/getSystemClassLoader))] (println (.getPath p)))
like image 156
Siddhartha Reddy Avatar answered Jul 26 '26 08:07

Siddhartha Reddy


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.

like image 32
Alex Taggart Avatar answered Jul 26 '26 07:07

Alex Taggart



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!