Clojure:gen-class并在java中导入它;包,路径,类路径

时间:2018-01-01 14:43:27

标签: clojure clojure-java-interop java-interop

我想将Clojure代码编译为Java中的一个类。

Clojure课程:

(ns clj.core)

(gen-class
 :name de.wt.TestClj
 :state state
 :init init
 :prefix "-"
 :main false
 :methods [[setValue [String] void]
           [getValue [] String]])

(defn -init []
  [[] (atom {:value ""})])

(defn -setValue [this val]
  (swap! (.state this) assoc :value val))

(defn -getValue [this]
  (@(.state this) :value))

使用lein uberjar编译并将输出-standalone.jar复制到子项de/wt下的Java项目中。

.java文件:

import de.wt.TestClj;

class CljTest {
    public static void main(String args[]) {
        TestClj test = new TestClj();
        System.out.println("Pre: " + test.getValue());
        test.setValue("foo");
        System.out.println("Post: " + test.getValue());
    }
}

现在我尝试编译

~/testbed/cljava/java % tree                                                                 [1 14:44:53]
.
├── CljTest.java
├── de
│   └── wt
│       └── TestClj.jar
└── TestClj.jar

2 directories, 3 files
~/testbed/cljava/java % javac -cp ./:./de/wt/TestClj.jar CljTest.java                        

CljTest.java:1: error: package de.wt does not exist
import de.wt.TestClj;
^
CljTest.java:5: error: cannot find symbol
TestClj test = new TestClj();
^
symbol:   class TestClj
location: class CljTest
CljTest.java:5: error: cannot find symbol
TestClj test = new TestClj();
^
symbol:   class TestClj
location: class CljTest
3 errors

在命名文件/包,创建目录和设置类路径时,我需要遵循什么方案?

1 个答案:

答案 0 :(得分:1)

您应该能够在jar中看到java类,例如:

 $ jar tvf target/default-0.1.0-SNAPSHOT-standalone.jar | grep TestClj
 2090 Mon Jan 01 18:43:12 CET 2018 de/wt/TestClj.class

如果没有,请确保project.clj中有:aot(提前编译)指令:

(defproject default "0.1.0-SNAPSHOT"
  :description "FIXME: write description"
  :url "http://example.com/FIXME"
  :license {:name "Eclipse Public License"
        :url "http://www.eclipse.org/legal/epl-v10.html"}
  :aot [clj.core]
  :dependencies [[org.clojure/clojure "1.7.0"]])

在jar中看到.class文件后,使用类路径中的jar,您在Java代码中的导入应该可以正常工作。

正如文档(https://clojure.org/reference/compilation)中所述:

  

Clojure将您即时加载的所有代码编译为JVM字节码,但有时提前编译(AOT)是有利的。使用AOT编译的一些原因是:

     

在没有来源的情况下交付您的应用程序

     

加快应用程序启动

     

生成供Java使用的命名类

     

创建不需要运行时字节码生成和自定义类加载器的应用程序

另见http://clojure-doc.org/articles/language/interop.html

  

AOT

     

gen-class需要提前(AOT)编译。这意味着在使用gen-class定义的类之前,Clojure编译器需要从gen-class定义生成.class文件。