I want to add some Java (actually Clojure) based event handlers to a HUGE legacy C application. What is the most straight forward and easily maintained way to do this? I would like the Java classes to be running in the same process as the C code. Is this even possible?
Share
The Java Native Interface would seem to be designed for this. In particular, this section of the spec seems relevant.