I am starting Clojure development in Eclipse
I have a new package called "apackage" under src.
In it I have JavaClass.java and Test.clj. How do I call the constructor of the JavaClass from the clojure file?
I tried
(def a (new apackage.JavaClass))
but I am getting a ClassNotFoundException. What am I doing wrong?