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?
|
|
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:
If you run it, you should see something like:
And here's a Java program that calls the
It's output is:
The first piece of magic is using the The second thing is to create a wrapper function that can be called by Java. Notice that the second version of And of course the Clojure jar itself must be on the class path. This example used the Clojure-1.1.0 jar. |
|||||||||||||||||
|
|
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:
|
|||||||||
|
|
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):
And in Java:
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. |
|||
|
|
|
I agree with clartaq's answer, but I felt that beginners could also use:
So I covered all that in this blog post. The Clojure code looks like this:
The leiningen 1.7.1 project setup looks like this:
The Java code looks like this:
Or you can also get all the code from this project on github. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|