A lot of old outdated tutorials talk about using RT.load to run clojure code from java. this is left over from the stone age and no longer necessasary.
see this SO question
here is a teaser from that question showing the generally accepted java side:
/* Thanks clartaq for this example */
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 should just look like normal java code. You're java code does not need to look any different just because the class it's calling happens to have been written in Clojure.