Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Most of the top google hits for "calling clojure from java" are outdated and reccomend using clojure.lang.RT to compile the source code. Could you help with a clear explanation of how to call Clojure from java assuming you have already build a jar from the clojure project and included it in the class path?

share|improve this question
2  
I don't know that compiling the source each time is "outdated" as such. It's a design decision. I'm doing that now as it makes integrating Clojure code into a legacy Java Netbeans project a snap. Add Clojure as a library, add a Clojure source file, setup the calls, and instant Clojure support without having multiple compilation/linking steps! At the cost of a fraction of a second delay on each app start. – Brian Knoblauch Dec 28 '11 at 14:49

6 Answers

up vote 65 down vote accepted

It isn't quite as simple as compiling to a jar and calling the internal methods. There do seem to be a few tricks to make it all work though. Here's an example of a simple Clojure file that can be compiled to a jar:

(ns com.domain.tiny
  (:gen-class
    :name com.domain.tiny
    :methods [#^{:static true} [binomial [int int] double]]))

(defn binomial
  "Calculate the binomial coefficient."
  [n k]
  (let [a (inc n)]
    (loop [b 1
           c 1]
      (if (> b k)
        c
        (recur (inc b) (* (/ (- a b) b) c))))))

(defn -binomial
  "A Java-callable wrapper around the 'binomial' function."
  [n k]
  (binomial n k))

(defn -main []
  (println (str "(binomial 5 3): " (binomial 5 3)))
  (println (str "(binomial 10042 111): " (binomial 10042 111)))
)

If you run it, you should see something like:

(binomial 5 3): 10
(binomial 10042 111): 49068389575068144946633777...

And here's a Java program that calls the -binomial function in the tiny.jar.

import com.domain.tiny;

public class Main {

    public static void main(String[] args) {
        System.out.println("(binomial 5 3): " + tiny.binomial(5, 3));
        System.out.println("(binomial 10042, 111): " + tiny.binomial(10042, 111));
    }
}

It's output is:

(binomial 5 3): 10.0
(binomial 10042, 111): 4.9068389575068143E263

The first piece of magic is using the :methods keyword in the gen-class statement. That seems to be required to let you access the Clojure function something like static methods in Java.

The second thing is to create a wrapper function that can be called by Java. Notice that the second version of -binomial has a dash in front of it.

And of course the Clojure jar itself must be on the class path. This example used the Clojure-1.1.0 jar.

share|improve this answer
3  
1. can i put your example on clojuredocs.org as example for the "ns" macro? 2. what is #^ in front of ":methods [#^{:static true} [binomial [int int] double]]" (i'm a newbie) ? – Belun Sep 20 '10 at 6:01
2  
@Belun, sure you can use it as an example -- I'm flattered. The "#^{:static true}" attaches some metadata to the function indicating that binomial is a static function. It's required in this case because, on the Java side, we are calling the function from main - a static function. If binomial were not static, compiling the main function on the Java side would produce an error message about "non-static method binomial(int,int) cannot be referenced from a static context". There are additional examples on the Object Mentor site. – clartaq Sep 20 '10 at 15:39
4  
There is one crucial thing not mentioned here - to compile Clojure file to Java class, you need to: (compile 'com.domain.tiny) – Domchi Oct 21 '11 at 22:52
how are you AOT compiling the Clojure source? This is where I'm stuck. – Matthew Boston May 16 '12 at 14:13
@MatthewBoston At the time the answer was written, I used Enclojure, a plugin for the NetBeans IDE. Now, I would probably use Leiningen, but has not tried or tested it. – clartaq Jun 21 '12 at 16:41

What kind of code are calling from Java? If you have class generated with gen-class, then simply call it. If you want to call function from script, then look to following example.

If you want to evaluate code from string, inside Java, then you can use following code:

import clojure.lang.RT;
import clojure.lang.Var;
import clojure.lang.Compiler;
import java.io.StringReader;

public class Foo {
  public static void main(String[] args) throws Exception {
    // Load the Clojure script -- as a side effect this initializes the runtime.
    String str = "(ns user) (defn foo [a b]   (str a \" \" b))";

    //RT.loadResourceScript("foo.clj");
    Compiler.load(new StringReader(str));

    // Get a reference to the foo function.
    Var foo = RT.var("user", "foo");

    // Call it!
    Object result = foo.invoke("Hi", "there");
    System.out.println(result);
  }
}
share|improve this answer
is clojure using threadlocals, how does one clear a session? – mP. Apr 18 '12 at 11:11
To expand a little bit if you want to access def'd var in the namespace (i.e. (def my-var 10)) use this RT.var("namespace", "my-var").deref(). – Ivan Koblik Nov 14 '12 at 9:40
It doesn't work for me without adding RT.load("clojure/core"); at the beginning. What the strange behavior? – hsestupin Dec 21 '12 at 9:55
doesn't work with 1.5.0: CLJ-1172 – yegor256 Mar 4 at 17:33

As I see it, the simplest way (if you don't generate a class with AOT compilation) is to use clojure.lang.RT to access functions in clojure. With it you can mimic what you would have done in Clojure (no need to compile things in special ways):

;; Example usage of the "bar-fn" function from the "foo.ns" namespace from Clojure
(require 'foo.ns)
(foo.ns/bar-fn 1 2 3)

And in Java:

// Example usage of the "bar-fn" function from the "foo.ns" namespace from Java
import clojure.lang.RT;
import clojure.lang.Symbol;
...
RT.var("clojure.core", "require").invoke(Symbol.intern("foo.ns"));
RT.var("foo.ns", "bar-fn").invoke(1, 2, 3);

It is a bit more verbose in Java, but I hope it's clear that the pieces of code are equivalent.

This should work as long as Clojure and the source files (or compiled files) of your Clojure code is on the classpath.

share|improve this answer

I agree with clartaq's answer, but I felt that beginners could also use:

  • step-by-step information on how to actually get this running
  • information that's current for Clojure 1.3 and recent versions of leiningen.
  • a Clojure jar that also includes a main function, so it can be run standalone or linked as a library.

So I covered all that in this blog post.

The Clojure code looks like this:

(ns ThingOne.core
 (:gen-class
    :methods [#^{:static true} [foo [int] void]]))

(defn -foo [i] (println "Hello from Clojure. My input was " i))

(defn -main [] (println "Hello from Clojure -main." ))

The leiningen 1.7.1 project setup looks like this:

(defproject ThingOne "1.0.0-SNAPSHOT"
  :description "Hello, Clojure"
  :dependencies [[org.clojure/clojure "1.3.0"]]
  :aot [ThingOne.core]
  :main ThingOne.core)

The Java code looks like this:

import ThingOne.*;

class HelloJava {
    public static void main(String[] args) {
        System.out.println("Hello from Java!");
        core.foo (12345);
    }
}

Or you can also get all the code from this project on github.

share|improve this answer

Other technique that works also with other languages on top of JVM is to declare an interface for functions you want to call and then use 'proxy' function to create instance that implemennts them.

share|improve this answer

You can also use AOT compilation to create class files representing your clojure code. Read the documentation about compilation, gen-class and friends in the Clojure API docs for the details about how to do this, but in essence you will create a class that calls clojure functions for each method invocation.

Another alternative is to use the new defprotocol and deftype functionality, which will also require AOT compilation but provide better performance. I don't know the details of how to do this yet, but a question on the mailing list would probably do the trick.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.