我想从Java代码中调用Clojure函数。最近没有问过这个问题,现有的答案对我不起作用。 (Clojure 1.3,leiningen 1.7.0)。我有以下最小程序:
(ns thing.main
(:gen-class
:methods [#^{:static true} [foo [int] void]]))
(defn -foo [i] (println "hello world, input is " i))
项目.clj看起来像这样:
(defproject thing "1.0.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.3.0"]]
:aot [thing.main]
:omit-source true)
我生成了一个uberjar,并使用这个小Java程序将其复制到同一目录中。
import thing.*;
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!");
main.foo(5); // or, alternately, foo(5);
}
}
我使用这个命令编译:
javac -cp '.:thing-1.0.0-SNAPSHOT-standalone.jar' HelloWorldApp.java
编译成功,但程序在运行时失败(ClassNotFoundException)。直接调用foo的第二种形式,如foo(5),甚至不编译。我也尝试过使用和不使用“gen-class”中的“静态”声明。
答案 0 :(得分:1)
当我运行指定了classpath的程序时,似乎对我有用。试试这样:
java -cp '.:thing-1.0.0-SNAPSHOT-standalone.jar' HelloWorldApp