How do I recompile and reload Java source code while `lein repl` is running?
clojure, java, leiningen
Solution
I'm answering my own bounty here but I did do a bit of work getting this up:
Use Vinyasa,
and here is a blog post:
Dynamic reloading of java code in emacs/nrepl
... actually... it's kinda not working anymore... you have to do back to the earlier versions in order to get the support.
Problem
I have a Clojure project, and I'm using leiningen. I'm also using tools.namespace to reload Clojure code while running a REPL. If I want to include Java source in the project, can I recompile and reload it while the REPL is running? What is the most convenient/dynamic way of doing it? Can I do it so that it works well with tools.namespace?